Skip to content

Commit 014f95e

Browse files
Upgrade Angular to Angular 10 and restructure the package.
1 parent dcc718f commit 014f95e

File tree

161 files changed

+8880
-9498
lines changed

Some content is hidden

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

161 files changed

+8880
-9498
lines changed

.gitignore

+39-29
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,46 @@
1-
# Node
2-
node_modules/*
3-
npm-debug.log
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+
# Only exists if Bazel was run
8+
/bazel-out
9+
10+
# dependencies
11+
/node_modules
412

5-
# TypeScript
6-
src/*.js
7-
src/*.map
8-
src/*.d.ts
13+
# profiling files
14+
chrome-profiler-events*.json
15+
speed-measure-plugin*.json
916

10-
# JetBrains
11-
.idea
17+
# IDEs and editors
18+
/.idea
1219
.project
13-
.settings
14-
.idea/*
15-
*.iml
20+
.classpath
21+
.c9/
22+
*.launch
23+
.settings/
24+
*.sublime-workspace
1625

17-
# VS Code
26+
# IDE - VSCode
1827
.vscode/*
28+
!.vscode/settings.json
29+
!.vscode/tasks.json
30+
!.vscode/launch.json
31+
!.vscode/extensions.json
32+
.history/*
33+
34+
# misc
35+
/.sass-cache
36+
/connect.lock
37+
/coverage
38+
/libpeerconnection.log
39+
npm-debug.log
40+
yarn-error.log
41+
testem.log
42+
/typings
1943

20-
# Windows
21-
Thumbs.db
22-
Desktop.ini
23-
24-
# Mac
44+
# System Files
2545
.DS_Store
26-
**/.DS_Store
27-
28-
# Ngc generated files
29-
**/*.ngfactory.ts
30-
31-
# Build files
32-
dist/*
33-
.tmp
34-
35-
# demo tmp files
36-
.demo
46+
Thumbs.db

angular.json

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"angular-formio": {
7+
"projectType": "library",
8+
"root": "projects/angular-formio",
9+
"sourceRoot": "projects/angular-formio/src",
10+
"prefix": "lib",
11+
"architect": {
12+
"build": {
13+
"builder": "@angular-devkit/build-angular:ng-packagr",
14+
"options": {
15+
"tsConfig": "projects/angular-formio/tsconfig.lib.json",
16+
"project": "projects/angular-formio/ng-package.json"
17+
},
18+
"configurations": {
19+
"production": {
20+
"tsConfig": "projects/angular-formio/tsconfig.lib.prod.json"
21+
}
22+
}
23+
},
24+
"test": {
25+
"builder": "@angular-devkit/build-angular:karma",
26+
"options": {
27+
"main": "projects/angular-formio/src/test.ts",
28+
"tsConfig": "projects/angular-formio/tsconfig.spec.json",
29+
"karmaConfig": "projects/angular-formio/karma.conf.js"
30+
}
31+
},
32+
"lint": {
33+
"builder": "@angular-devkit/build-angular:tslint",
34+
"options": {
35+
"tsConfig": [
36+
"projects/angular-formio/tsconfig.lib.json",
37+
"projects/angular-formio/tsconfig.spec.json"
38+
],
39+
"exclude": [
40+
"**/node_modules/**"
41+
]
42+
}
43+
}
44+
}
45+
}},
46+
"defaultProject": "angular-formio"
47+
}

0 commit comments

Comments
 (0)