Skip to content

Commit c74f005

Browse files
Revert "chore(): upgrade angular v16"
1 parent c818bfa commit c74f005

File tree

13 files changed

+16453
-3229
lines changed

13 files changed

+16453
-3229
lines changed

.github/workflows/lighthouse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111

1212
steps:
1313
- uses: actions/checkout@v3
14-
- name: Use Node.js 16.x
14+
- name: Use Node.js 12.x
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: 16.x
17+
node-version: 12.x
1818
# Build needs around 400 seconds on Netlify.
1919
# We can not rely on "Waiting for 200", since the user
2020
# might push another commit to an existing PR, meaning

angular.json

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"src/_redirects"
2828
],
2929
"styles": [
30-
"src/styles.scss"
30+
"src/styles.scss",
31+
"src/assets/css/perfect-scrollbar.min.css"
3132
]
3233
},
3334
"configurations": {
@@ -95,6 +96,43 @@
9596
"src/assets"
9697
]
9798
}
99+
},
100+
"lint": {
101+
"builder": "@angular-devkit/build-angular:tslint",
102+
"options": {
103+
"tsConfig": [
104+
"src/tsconfig.app.json",
105+
"src/tsconfig.spec.json"
106+
],
107+
"exclude": [
108+
"**/node_modules/**"
109+
]
110+
}
111+
}
112+
}
113+
},
114+
"docs.nestjs.com-e2e": {
115+
"root": "e2e",
116+
"sourceRoot": "e2e",
117+
"projectType": "application",
118+
"architect": {
119+
"e2e": {
120+
"builder": "@angular-devkit/build-angular:protractor",
121+
"options": {
122+
"protractorConfig": "./protractor.conf.js",
123+
"devServerTarget": "docs.nestjs.com:serve"
124+
}
125+
},
126+
"lint": {
127+
"builder": "@angular-devkit/build-angular:tslint",
128+
"options": {
129+
"tsConfig": [
130+
"e2e/tsconfig.e2e.json"
131+
],
132+
"exclude": [
133+
"**/node_modules/**"
134+
]
135+
}
98136
}
99137
}
100138
}

0 commit comments

Comments
 (0)