Skip to content

Commit

Permalink
upgrade to ng13
Browse files Browse the repository at this point in the history
  • Loading branch information
ebrehault committed Jan 1, 2022
1 parent 28cadb6 commit ce6c53b
Show file tree
Hide file tree
Showing 22 changed files with 4,417 additions and 9,410 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
- uses: actions/checkout@v2
- name: Test and build
uses: actions/setup-node@v1
with:
node-version: 14.17
- run: npm install
- run: npm run test
env:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
uses: actions/checkout@v2
- name: setup Node
uses: actions/setup-node@v1
with:
node-version: 14.17
- run: npm install
- name: Github pages
uses: sterlingwes/[email protected]
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
!.vscode/extensions.json

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# 2.7.0 (2022-01-01)

- Upgrade to Angular 13 (ebrehault)

# 2.6.9 (2021-12-17)
- Cherry pick #420 fixed visibileIf empty object check

- Cherry pick #420 fixed visibileIf empty object check

# 2.6.8 (2021-11-26)

Expand Down
37 changes: 9 additions & 28 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"outputPath": "dist/ngx-schema-form",
"index": "src/index.html",
"main": "src/main.ts",
Expand All @@ -26,7 +25,13 @@
"styles": [
"src/styles.css"
],
"scripts": []
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -46,12 +51,12 @@
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down Expand Up @@ -86,18 +91,6 @@
"src/assets"
]
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
},
Expand Down Expand Up @@ -127,18 +120,6 @@
"tsConfig": "projects/schema-form/tsconfig.spec.json",
"karmaConfig": "projects/schema-form/karma.conf.js"
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/schema-form/tsconfig.lib.json",
"projects/schema-form/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
Expand Down
Loading

0 comments on commit ce6c53b

Please sign in to comment.