Skip to content

Commit

Permalink
include tsc-alias in the build command
Browse files Browse the repository at this point in the history
  • Loading branch information
koros committed Jun 10, 2024
1 parent 7b36f0a commit b6ad144
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/abstractions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc",
"build:esm": "tsc && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf ./dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/azure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc",
"build:esm": "tsc && tsc-alias",
"test:node": "vitest run",
"test:browser": "vitest run --browser.name=chrome --browser.headless",
"test": "npm run test:node && npm run test:browser",
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/spfx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc",
"build:esm": "tsc && tsc-alias",
"test:browser": "vitest run --browser.name=chrome --browser.headless",
"test:node": "vitest --run",
"test": "npm run test:node && npm run test:browser",
Expand Down
2 changes: 1 addition & 1 deletion packages/http/fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc",
"build:esm": "tsc && tsc-alias",
"clean": "rimraf ./dist",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc -b",
"build:esm": "tsc -b && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf ./dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/json/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"types": "dist/es/src/index.d.ts",
"scripts": {
"build": "npm run clean && npm run build:esm",
"build:esm": "tsc -b",
"build:esm": "tsc -b && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf ./dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/multipart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc -b",
"build:esm": "tsc -b && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf -rf ./dist",
Expand Down
2 changes: 1 addition & 1 deletion packages/serialization/text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "module",
"scripts": {
"build": "npm run build:esm",
"build:esm": "tsc",
"build:esm": "tsc && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"clean": "rimraf -rf ./dist",
Expand Down

0 comments on commit b6ad144

Please sign in to comment.