Skip to content

Commit

Permalink
enable Ivy, add prettierrc
Browse files Browse the repository at this point in the history
  • Loading branch information
kiedd committed Jan 6, 2023
1 parent dc2be21 commit 41ad789
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

name: Test and Build with node.js ${{ matrix.node-version }}
Expand All @@ -26,4 +26,4 @@ jobs:
run: |
npm ci
npm test
npm build
npm run build
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"tabWidth": 2,
"singleQuote": true,
"useTabs": false
}
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"build-js": "ng build",
"extract-scss-variables": "extract-scss-variables ./dist/styles/archwizard.scss ./dist/styles/variables.scss",
"build-css": "sass ./dist/styles/archwizard.scss ./dist/styles/archwizard.css",
"test": "ng test && ng test --ts-config=tsconfig-noIvy.spec.json",
"test": "ng test",
"coverage": "ng test --no-watch --code-coverage",
"lint": "ng lint",
"e2e": "ng e2e"
Expand Down
6 changes: 0 additions & 6 deletions tsconfig-noIvy.spec.json

This file was deleted.

1 change: 0 additions & 1 deletion tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true,
"enableIvy": false
},
"exclude": [
"src/test.ts",
Expand Down
1 change: 0 additions & 1 deletion tsconfig.spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,5 @@
"**/*.d.ts"
],
"angularCompilerOptions": {
"enableIvy": true
}
}

0 comments on commit 41ad789

Please sign in to comment.