Skip to content

Commit 8e86c3a

Browse files
authored
Merge pull request #374 from halfnelson/fix/windows-build
fix(build): restore windows build support
2 parents 5b80590 + 2bb91c1 commit 8e86c3a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"build": "lerna run build",
1616
"build.watch": "lerna run build.watch",
1717
"build.all": "lerna run build.all",
18+
"build.all.win": "lerna run build.all.win",
1819
"build.angular": "lerna run build.angular",
1920
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metadata.json' 'packages/**/*.ngsummary.json' 'packages/**/*.mjs' 'packages/**/*.mjs.map' 'packages/**/node_modules' 'packages/**/angular/package.json' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
2021
"commitmsg": "commitlint -e $GIT_PARAMS",

packages/core-tabs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"typings": "./index.d.ts",
88
"scripts": {
99
"tsc": "../../node_modules/.bin/cpy '**/*.d.ts' '../../packages/core-tabs' --cwd=../../src/core-tabs --parents && ../../node_modules/.bin/tsc -d",
10-
"tsc-win": "..\\..\\node_modules\\.bin\\cpy '**/*.d.ts' '..\\..\\packages\\core-tabs' --cwd=..\\..\\src\\core-tabs --parents && ..\\..\\node_modules\\.bin\\tsc -d",
10+
"tsc-win": "..\\..\\node_modules\\.bin\\cpy **/*.d.ts ..\\..\\packages\\core-tabs --cwd=..\\..\\src\\core-tabs --parents && ..\\..\\node_modules\\.bin\\tsc -d",
1111
"build": "npm run tsc ",
1212
"build.watch": "npm run tsc -- -w",
1313
"build.win": "npm run tsc-win ",

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"typings": "./index.d.ts",
88
"scripts": {
99
"tsc": "../../node_modules/.bin/cpy '**/*.d.ts' '../../packages/core' --cwd=../../src/core --parents && ../../node_modules/.bin/tsc -d",
10-
"tsc-win": "..\\..\\node_modules\\.bin\\cpy '**/*.d.ts' '..\\..\\packages\\core' --cwd=..\\..\\src\\core --parents && ..\\..\\node_modules\\.bin\\tsc -d",
10+
"tsc-win": "..\\..\\node_modules\\.bin\\cpy **/*.d.ts ..\\..\\packages\\core --cwd=..\\..\\src\\core --parents && ..\\..\\node_modules\\.bin\\tsc -d",
1111
"build": "npm run tsc",
1212
"build.watch": "npm run tsc -- -w",
1313
"build.win": "npm run tsc-win",

0 commit comments

Comments
 (0)