Skip to content
This repository was archived by the owner on May 24, 2022. It is now read-only.

Commit aa1df3c

Browse files
committedJun 20, 2021
breaking: skip support angular schematics
1 parent 712ff3d commit aa1df3c

12 files changed

+5
-196
lines changed
 

‎.github/workflows/workflow.yml

-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
- name: Run building libraries step
3939
run: |
4040
yarn build:lib
41-
yarn build:schematics
4241
4342
- name: Run lint step
4443
run: |

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 6.2.0 2021-06-20
2+
3+
- BREAKING: skip support angular schematics
4+
15
# 6.1.0 2021-06-20
26

37
- Feat: improved type checking

‎lib/package.json

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,7 @@
11
{
22
"name": "@ngxs-labs/data",
3-
"version": "6.1.0",
3+
"version": "6.2.0",
44
"license": "MIT",
5-
"schematics": "./schematics/collection.json",
6-
"scripts": {
7-
"build": "tsc -p ../tsconfig.schematics.json",
8-
"build:watch": "npm run build -- --watch",
9-
"copy:schemas": "cp --parents ./schematics/*/schema.json ../dist/ngxs-data/ | true",
10-
"copy:files": "cp --parents -p ./schematics/*/files/** ../dist/ngxs-data/ | true",
11-
"copy:collection": "cp ./schematics/collection.json ../dist/ngxs-data/schematics/collection.json",
12-
"postbuild": "npm run copy:schemas && npm run copy:files && npm run copy:collection"
13-
},
145
"repository": {
156
"type": "git",
167
"url": "git+https://github.com/ngxs-labs/data.git"

‎lib/schematics/collection.json

-9
This file was deleted.

‎lib/schematics/ng-add/index.ts

-17
This file was deleted.

‎lib/schematics/ng-add/src/add-module-to-imports.ts

-63
This file was deleted.

‎lib/schematics/ng-add/src/add-ngxs-packages.ts

-18
This file was deleted.

‎lib/schematics/ng-add/src/run-npm-install.ts

-12
This file was deleted.

‎lib/schematics/symbols.ts

-34
This file was deleted.

‎lib/schematics/utils/logger.ts

-13
This file was deleted.

‎package.json

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"scripts": {
66
"build:app": "ng build",
77
"build:lib": "ng build library && cp README.md dist/ngxs-data",
8-
"build:schematics": "cd lib && npm run build",
98
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
109
"format": "npx sort-package-json && prettier --write \"**/*.{js,ts,html,css,scss,md,json,yml}\"",
1110
"postinstall": "ngcc --async",

‎tsconfig.schematics.json

-18
This file was deleted.

0 commit comments

Comments
 (0)