Skip to content

Commit 4a45442

Browse files
committed
Make build commands consistent to have better output
1 parent 795e7c5 commit 4a45442

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

packages/abstractions/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"module": "dist/es/src/index.js",
77
"types": "dist/es/src/index.d.ts",
88
"scripts": {
9-
"build": "npm run clean && tsc -b",
9+
"build": "npm run clean && npm run build:esm",
10+
"build:esm": "tsc",
1011
"lint": "eslint . --ext .ts",
1112
"lint:fix": "eslint . --ext .ts --fix",
1213
"clean": "rm -rf ./dist",

packages/authentication/azure/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"module": "dist/es/src/index.js",
77
"types": "dist/es/src/index.d.ts",
88
"scripts": {
9-
"build": "npm run clean && tsc -b",
9+
"build": "npm run clean && npm run build:esm",
10+
"build:esm": "tsc",
1011
"test:node": "vitest run",
1112
"test:browser": "vitest run --browser.name=chrome --browser.headless",
1213
"test": "npm run test:node && npm run test:browser",

packages/authentication/spfx/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"module": "dist/es/src/index.js",
77
"types": "dist/es/src/index.d.ts",
88
"scripts": {
9-
"build": "npm run clean && tsc -b",
9+
"build": "npm run clean && npm run build:esm",
10+
"build:esm": "tsc",
1011
"test:browser": "vitest run --browser.name=chrome --browser.headless",
1112
"test:node": "vitest --run",
1213
"test": "npm run test:node && npm run test:browser",

packages/http/fetch/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"module": "dist/es/src/index.js",
2323
"types": "dist/es/src/index.d.ts",
2424
"scripts": {
25-
"build": "npm run clean && tsc -b",
25+
"build": "npm run clean && npm run build:esm",
26+
"build:esm": "tsc",
2627
"clean": "rm -rf ./dist",
2728
"lint": "eslint . --ext .ts",
2829
"lint:fix": "eslint . --ext .ts --fix",

0 commit comments

Comments
 (0)