|
7 | 7 | "start": "ng serve", |
8 | 8 | "start:demo": "ng serve --app demo", |
9 | 9 | "start:docs": "ng serve --app docs", |
| 10 | + |
10 | 11 | "build": "ng build", |
11 | 12 | "build:demo": "ng build --app demo", |
12 | 13 | "build:demo:prod": "ng build --app demo --prod", |
|
15 | 16 | "build:docs:prod": "ng build --app docs --prod", |
16 | 17 | "build:docs:prod:package": "ng build --app docs-from-packages --prod", |
17 | 18 | "build:docs:github": "ng build --app docs --prod --output-path docs --base-href https://benfeely.github.io/angular-react/", |
18 | | - "build:core": "ng-packagr -p libs/core/package.json", |
19 | | - "postbuild:core": "copyfiles README.md ./@angular-react/core", |
20 | | - "build:fabric": "ng-packagr -p libs/fabric/package.json", |
21 | | - "build:semantic-ui": "ng-packagr -p libs/semantic-ui/package.json", |
| 19 | + |
| 20 | + "build:libs": "npm run build:libs:core && npm run build:libs:fabric && npm run build:libs:semantic-ui", |
| 21 | + "build:libs:core": "ng-packagr -p libs/core/package.json", |
| 22 | + "postbuild:libs:core": "copyfiles README.md ./@angular-react/core", |
| 23 | + "build:libs:fabric": "ts-node libs/fabric/build.ts", |
| 24 | + "build:libs:semantic-ui": "ts-node libs/semantic-ui/build.ts", |
| 25 | + |
22 | 26 | "test": "ng test", |
23 | 27 | "lint": "./node_modules/.bin/nx lint && ng lint", |
24 | 28 | "e2e": "ng e2e", |
|
32 | 36 | "update:check": "./node_modules/.bin/nx update check", |
33 | 37 | "update:skip": "./node_modules/.bin/nx update skip", |
34 | 38 | "postinstall": "./node_modules/.bin/nx postinstall", |
35 | | - "publish:core": "npm run build:core && npm adduser && npm publish ./@angular-react/core --access=public", |
36 | | - "publish:fabric": "npm run build:fabric && npm adduser && npm publish ./@angular-react/fabric.tgz --access=public", |
37 | | - "publish:semantic-ui": "npm run build:semantic-ui && npm adduser && npm publish ./@angular-react/material.tgz --access=public" |
| 39 | + |
| 40 | + "publish:core": "npm run build:libs && npm adduser && npm publish ./@angular-react/core --access=public", |
| 41 | + "publish:fabric": "npm run build:libs && npm adduser && npm publish ./@angular-react/fabric.tgz --access=public", |
| 42 | + "publish:semantic-ui": "npm run build:libs && npm adduser && npm publish ./@angular-react/semantic-ui.tgz --access=public" |
38 | 43 | }, |
39 | 44 | "private": false, |
40 | 45 | "dependencies": { |
|
64 | 69 | "zone.js": "^0.8.19" |
65 | 70 | }, |
66 | 71 | "devDependencies": { |
| 72 | + "@angular-devkit/core": "0.4.6", |
| 73 | + "@angular-devkit/schematics": "0.4.6", |
67 | 74 | "@angular/cli": "^1.7.4", |
68 | 75 | "@angular/compiler-cli": "5.2.7", |
69 | 76 | "@angular/language-service": "5.2.7", |
|
87 | 94 | "prettier": "1.10.2", |
88 | 95 | "protractor": "~5.1.2", |
89 | 96 | "ts-node": "~4.1.0", |
| 97 | + "tsickle": "^0.27.5", |
| 98 | + "tslib": "^1.9.0", |
90 | 99 | "tslint": "~5.9.1", |
91 | 100 | "typescript": "2.6.2" |
92 | 101 | } |
|
0 commit comments