Skip to content

Commit e5825bf

Browse files
feat: redo structure and support angular 15 (#54)
1 parent 14ae930 commit e5825bf

File tree

73 files changed

+6388
-28249
lines changed

Some content is hidden

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

73 files changed

+6388
-28249
lines changed

.browserslistrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

.editorconfig

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Editor configuration, see http://editorconfig.org
1+
# Editor configuration, see https://editorconfig.org
22
root = true
33

44
[*]
@@ -8,6 +8,9 @@ indent_size = 2
88
insert_final_newline = true
99
trim_trailing_whitespace = true
1010

11+
[*.ts]
12+
quote_type = single
13+
1114
[*.md]
1215
max_line_length = off
1316
trim_trailing_whitespace = false

.eslintrc.json

Lines changed: 0 additions & 69 deletions
This file was deleted.

.gitignore

Lines changed: 12 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,42 @@
11
# See http://help.github.com/ignore-files/ for more about ignoring files.
22

3-
# compiled output
3+
# Compiled output
44
/dist
5-
/dist-server
65
/tmp
76
/out-tsc
7+
/bazel-out
88

9-
# angular
10-
.angular/*
11-
12-
# dependencies
9+
# Node
1310
/node_modules
11+
npm-debug.log
12+
yarn-error.log
1413

1514
# IDEs and editors
16-
/.idea
15+
.idea/
1716
.project
1817
.classpath
1918
.c9/
2019
*.launch
2120
.settings/
2221
*.sublime-workspace
2322

24-
# IDE - VSCode
23+
# Visual Studio Code
2524
.vscode/*
2625
!.vscode/settings.json
2726
!.vscode/tasks.json
2827
!.vscode/launch.json
2928
!.vscode/extensions.json
29+
.history/*
3030

31-
# misc
32-
/.sass-cache
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
3334
/connect.lock
3435
/coverage
3536
/libpeerconnection.log
36-
npm-debug.log
37-
yarn-error.log
3837
testem.log
3938
/typings
4039

41-
# e2e
42-
/e2e/*.js
43-
/e2e/*.map
44-
45-
# System Files
40+
# System files
4641
.DS_Store
4742
Thumbs.db
48-
49-
TESTS-*.xml
50-
/.angular/cache/*

.vs/ProjectSettings.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.vs/slnx.sqlite

-88 KB
Binary file not shown.

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3+
"recommendations": ["angular.ng-template"]
4+
}

.vscode/launch.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"name": "ng serve",
7+
"type": "pwa-chrome",
8+
"request": "launch",
9+
"preLaunchTask": "npm: start",
10+
"url": "http://localhost:4200/"
11+
},
12+
{
13+
"name": "ng test",
14+
"type": "chrome",
15+
"request": "launch",
16+
"preLaunchTask": "npm: test",
17+
"url": "http://localhost:9876/debug.html"
18+
}
19+
]
20+
}

.vscode/settings.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

.vscode/tasks.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3+
"version": "2.0.0",
4+
"tasks": [
5+
{
6+
"type": "npm",
7+
"script": "start",
8+
"isBackground": true,
9+
"problemMatcher": {
10+
"owner": "typescript",
11+
"pattern": "$tsc",
12+
"background": {
13+
"activeOnStart": true,
14+
"beginsPattern": {
15+
"regexp": "(.*?)"
16+
},
17+
"endsPattern": {
18+
"regexp": "bundle generation complete"
19+
}
20+
}
21+
}
22+
},
23+
{
24+
"type": "npm",
25+
"script": "test",
26+
"isBackground": true,
27+
"problemMatcher": {
28+
"owner": "typescript",
29+
"pattern": "$tsc",
30+
"background": {
31+
"activeOnStart": true,
32+
"beginsPattern": {
33+
"regexp": "(.*?)"
34+
},
35+
"endsPattern": {
36+
"regexp": "bundle generation complete"
37+
}
38+
}
39+
}
40+
}
41+
]
42+
}

angular-reactive-validation/ng-package.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

angular-reactive-validation/src/public_api.ts

Lines changed: 0 additions & 7 deletions
This file was deleted.

angular-reactive-validation/tsconfig.lib.json

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)