Skip to content

Commit

Permalink
- aligns esm tasks
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Jan 16, 2024
1 parent 9a6aa68 commit 212d872
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
"packages/authentication/*"
],
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build": "npm run build:cjs && npm run build:esm",
"build:watch": "npm run build:watch:cjs & npm run build:watch:es",
"build:cjs": "tsc -b packages/test/tsconfig.cjs.json",
"build:watch:cjs": "tsc -b packages/test/tsconfig.cjs.json -w",
"build:es": "tsc -b packages/test/tsconfig.es.json",
"build:esm": "tsc -b packages/test/tsconfig.es.json",
"build:sdk": "npm run build:sdk:es && npm run build:sdk:cjs",
"build:sdk:es": "tsc -b packages/test/tsconfig.sdk.es.json",
"build:sdk:cjs": "tsc -b packages/test/tsconfig.sdk.cjs.json",
Expand Down
4 changes: 2 additions & 2 deletions packages/http/fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
},
"types": "dist/cjs/src/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:es": "tsc -b tsconfig.es.json",
"build:esm": "tsc -b tsconfig.es.json",
"build:test": "tsc -b tsconfig.cjs.test.json && tsc -b tsconfig.es.test.json",
"clean": "rm -r ./dist",
"karma": "npm run rollup && karma start --single-run --browsers ChromeHeadless karma.conf.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/serialization/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"module": "dist/es/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:es": "tsc -b tsconfig.es.json",
"build:esm": "tsc -b tsconfig.es.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -r ./dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/serialization/json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"module": "dist/es/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:es": "tsc -b tsconfig.es.json",
"build:esm": "tsc -b tsconfig.es.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -r ./dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/serialization/multipart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"module": "dist/es/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:es": "tsc -b tsconfig.es.json",
"build:esm": "tsc -b tsconfig.es.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -r ./dist",
Expand Down
4 changes: 2 additions & 2 deletions packages/serialization/text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"module": "dist/es/src/index.js",
"types": "dist/cjs/src/index.d.ts",
"scripts": {
"build": "npm run build:cjs && npm run build:es",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:es": "tsc -b tsconfig.es.json",
"build:esm": "tsc -b tsconfig.es.json",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rm -r ./dist ./node_modules",
Expand Down

0 comments on commit 212d872

Please sign in to comment.