Skip to content

Commit

Permalink
fix build folders
Browse files Browse the repository at this point in the history
  • Loading branch information
0xslipk committed Jul 7, 2022
1 parent 85dfe1f commit 6a1f0cc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1,562 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@
"test:e2e": "NODE_ENV=test mocha -t 360000 --require ts-node/register src/**/*.e2e-spec.ts --exit",
"build:contracts": "hardhat compile",
"clean": "rm -rf ./lib ./lib.esm ./lib.esnext",
"build": "tsc --build ./tsconfig.json",
"build": "tsc --build ./tsconfig.build.json",
"prebuild-all": "npm run clean",
"build-all": "npm run build-cjs && npm run build-esnext && npm run build-esm",
"build-cjs": "tsc -p tsconfig.json --outDir lib -t es3 -m commonjs",
"build-esnext": "tsc -p tsconfig.json --outDir lib.esnext -t es2015 -m commonjs",
"build-esm": "tsc -p tsconfig.json --outDir lib.esm -t es2015 -m es2015",
"build-cjs": "tsc -p tsconfig.build.json --outDir lib -t es3 -m commonjs",
"build-esnext": "tsc -p tsconfig.build.json --outDir lib.esnext -t es2015 -m commonjs",
"build-esm": "tsc -p tsconfig.build.json --outDir lib.esm -t es2015 -m es2015",
"lint:ci": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepublishOnly": "npm run lint:ci && npm run test && npm run build-all"
Expand Down
Loading

0 comments on commit 6a1f0cc

Please sign in to comment.