Skip to content

Commit

Permalink
fix: simplify scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Haynes committed Sep 12, 2024
1 parent 7234a4d commit 374b03a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions packages/cookbook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
"author": "",
"license": "ISC",
"scripts": {
"build": "pnpm compile:esm && pnpm compile:cjs",
"compile:esm": "tsc -p tsconfig.json",
"compile:cjs": "tsc -p tsconfig.cjs.json && cjsify ./lib/commonjs",
"build": "tsc -p tsconfig.json",
"lint": "eslint -c ../../.eslintrc.ts.yml src/**/*.ts --no-eslintrc",
"lint:fix": "eslint -c ../../.eslintrc.ts.yml src/**/*.ts --no-eslintrc --fix",
"addFullAccessKey": "tsx -e \"import f from './accounts/access-keys/create-full-access-key.ts'; f(...process.argv.slice(1));\"",
Expand Down
2 changes: 1 addition & 1 deletion packages/cookbook/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "tsconfig/esm.json",
"compilerOptions": {
"outDir": "./lib/esm",
"noEmit": true
},
"files": [
"src/index.ts"
Expand Down

0 comments on commit 374b03a

Please sign in to comment.