Skip to content

Commit

Permalink
chore(@aws-amplify/core): fix build:esm and build:esm:watch scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddie Keller committed Apr 14, 2021
1 parent b93211e commit 0cfa6a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
"test": "tslint 'src/**/*.ts' && jest -w 1 --coverage",
"build-with-test": "npm test && npm run build",
"build:cjs": "node ./build es5 && webpack && webpack --config ./webpack.config.dev.js",
"build:esm": "node ./build es6",
"build:esm": "rimraf lib-esm && node ./build es6",
"build:cjs:watch": "node ./build es5 --watch",
"build:esm:watch": "node ./build es6 --watch",
"build:esm:watch": "rimraf lib-esm && node ./build es6 --watch",
"build": "npm run clean && npm run generate-version && npm run build:esm && npm run build:cjs",
"generate-version": "genversion src/Platform/version.ts --es6 --semi",
"clean": "rimraf lib-esm lib dist",
Expand Down

0 comments on commit 0cfa6a6

Please sign in to comment.