chore: add sandbox to ng-schematics (#9816)

This commit is contained in:
Nikolay Vitkov
2023-03-09 14:19:40 +01:00
committed by GitHub
parent cefc4eab47
commit 2335770aee
5 changed files with 4381 additions and 4016 deletions

View File

@@ -8,7 +8,8 @@
"clean": "tsc -b --clean && rm -rf lib && rm -rf test/build",
"dev:test": "npm run test --watch",
"dev": "npm run build --watch",
"test": "wireit"
"test": "wireit",
"sandbox": "node tools/sandbox.js"
},
"wireit": {
"build": {
@@ -31,11 +32,13 @@
"files": [
"**/tsconfig.*.json",
"**/tsconfig.json",
"src/**/*.ts"
"src/**/*.ts",
"!src/**/files/**"
],
"output": [
"lib/**/*.{ts,js}",
"lib/**/*.{ts,js}.map"
"lib/**/*.{ts,js}.map",
"!lib/**/files/**"
]
},
"test": {
@@ -66,7 +69,8 @@
},
"devDependencies": {
"@types/node": "^14.15.0",
"@schematics/angular": "^14.2.8"
"@schematics/angular": "^14.2.8",
"@angular/cli": "^15.2.2"
},
"files": [
"lib",