Skip to content

Commit 779d8d1

Browse files
committed
Ng Add schematic
1 parent f83a47e commit 779d8d1

16 files changed

+3211
-2044
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ testem.log
4646
Thumbs.db
4747
*-debug.log
4848
*-error.log
49-

.npmignore

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# dependencies
2+
/node_modules
3+
4+
# production
5+
/out-tsc
6+
*.tgz
7+
8+
# source and scripts
9+
/src
10+
/scripts
11+
/.github
12+
.gitignore
13+
/dist/**/*.js.map
14+
/dist/**/*.mjs.map
15+
angular.json
16+
ng-package.json
17+
18+
# testing and coverage
19+
karma.conf.ts
20+
/logs
21+
/coverage
22+
23+
# bun (not production ready)
24+
bun.lockb
25+
bunfig.toml
26+
node_modules.bun
27+
28+
# IDEs and editors
29+
/.idea
30+
.project
31+
.classpath
32+
.c9/
33+
*.launch
34+
.settings/
35+
*.sublime-workspace
36+
/.vscode
37+
.editorconfig
38+
.eslintrc.js
39+
.prettierrc
40+
.prettierignore
41+
tsconfig*.json
42+
jsconfig*.json
43+
.DS_Store
44+
**/tsconfig*.tsbuildinfo
45+
**/jsconfig*.tsbuildinfo
46+
47+
# misc
48+
/.angular
49+
.sass-cache/
50+
/connect.lock
51+
/libpeerconnection.log
52+
testem.log
53+
/tmp
54+
/bazel-out
55+
Thumbs.db
56+
*-debug.log
57+
*-error.log

ng-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"entryFile": "./src/index.ts"
77
},
88

9-
"allowedNonPeerDependencies": ["@float-toolkit/core"]
9+
"allowedNonPeerDependencies": ["@angular-devkit/schematics", "@float-toolkit/core", "@schematics/angular"]
1010
}

0 commit comments

Comments
 (0)