Skip to content

Commit bb4306e

Browse files
committed
feat: update the project structure with angular-cli and ng-packagr
1 parent de024cd commit bb4306e

File tree

218 files changed

+6664
-24730
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

218 files changed

+6664
-24730
lines changed

demo/.angular-cli.json renamed to .angular-cli.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
33
"project": {
4-
"name": "demo"
4+
"name": "ngx-virtual-scroll"
55
},
66
"apps": [
77
{
@@ -36,16 +36,13 @@
3636
},
3737
"lint": [
3838
{
39-
"project": "src/tsconfig.app.json",
40-
"exclude": "**/node_modules/**"
39+
"project": "src/tsconfig.app.json"
4140
},
4241
{
43-
"project": "src/tsconfig.spec.json",
44-
"exclude": "**/node_modules/**"
42+
"project": "src/tsconfig.spec.json"
4543
},
4644
{
47-
"project": "e2e/tsconfig.e2e.json",
48-
"exclude": "**/node_modules/**"
45+
"project": "e2e/tsconfig.e2e.json"
4946
}
5047
],
5148
"test": {
File renamed without changes.

.gitignore

Lines changed: 43 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,43 @@
1-
node_modules/
2-
*.log
3-
/compiled
4-
*.map.js
5-
*.js
6-
/src/**/*.js
7-
angular2-virtual-scroll-*.tgz
8-
.idea
9-
.vscode
10-
yarn.lock
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
dist
5+
tmp
6+
out-tsc
7+
.ng_build
8+
9+
# dependencies
10+
/node_modules
11+
12+
# IDEs and editors
13+
/.idea
14+
.project
15+
.classpath
16+
.c9/
17+
*.launch
18+
.settings/
19+
*.sublime-workspace
20+
21+
# IDE - VSCode
22+
.vscode/*
23+
!.vscode/settings.json
24+
!.vscode/tasks.json
25+
!.vscode/launch.json
26+
!.vscode/extensions.json
27+
28+
# misc
29+
/.sass-cache
30+
/connect.lock
31+
/coverage
32+
/libpeerconnection.log
33+
npm-debug.log
34+
testem.log
35+
/typings
36+
37+
# e2e
38+
/e2e/*.js
39+
/e2e/*.map
40+
41+
# System Files
42+
.DS_Store
43+
Thumbs.db

0 commit comments

Comments
 (0)