File tree Expand file tree Collapse file tree 9 files changed +849
-726
lines changed Expand file tree Collapse file tree 9 files changed +849
-726
lines changed Original file line number Diff line number Diff line change
1
+ import { format } from './format.mjs' ;
2
+ import { github } from './github.mjs' ;
3
+ import { pullRequest } from './pull-request.mjs' ;
4
+
5
+ export { format , github , pullRequest } ;
Load Diff This file was deleted.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -11,10 +11,8 @@ export const pullRequest: PullRequestConfig = {
11
11
// use the Github API merge strategy. That way we ensure that PRs show up as `Merged`.
12
12
githubApiMerge : {
13
13
default : 'squash' ,
14
- labels : [
15
- { pattern : 'preserve commits' , method : 'rebase' } ,
16
- ] ,
14
+ labels : [ { pattern : 'preserve commits' , method : 'rebase' } ] ,
17
15
} ,
18
16
mergeReadyLabel : 'action: merge' ,
19
- commitMessageFixupLabel : 'commit message fixup'
17
+ commitMessageFixupLabel : 'commit message fixup' ,
20
18
} ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "compilerOptions" : {
3
+ "strict" : true ,
4
+ "target" : " es2020" ,
5
+ "module" : " Node16" ,
6
+ "esModuleInterop" : true ,
7
+ "noEmit" : true ,
8
+ "skipLibCheck" : true ,
9
+ "types" : []
10
+ }
11
+ }
Original file line number Diff line number Diff line change 200
200
],
201
201
"main" : " ./dist/client/extension" ,
202
202
"scripts" : {
203
+ "ng-dev" : " ts-node --esm --project .ng-dev/tsconfig.json node_modules/@angular/dev-infra-private/ng-dev/bundles/cli.mjs" ,
203
204
"compile" : " tsc -b server/banner.tsconfig.json && tsc -b && node esbuild.js" ,
204
205
"compile:test" : " tsc -b test.tsconfig.json" ,
205
206
"compile:integration" : " tsc -b integration && yarn --cwd integration/project build" ,
216
217
},
217
218
"dependencies" : {
218
219
"@angular/language-service" : " 14.1.0-next.0" ,
219
- "typescript" : " 4.5 .4" ,
220
+ "typescript" : " 4.7 .4" ,
220
221
"vscode-jsonrpc" : " 6.0.0" ,
221
222
"vscode-languageclient" : " 7.0.0" ,
222
223
"vscode-languageserver" : " 7.0.0" ,
223
224
"vscode-uri" : " 3.0.3"
224
225
},
225
226
"devDependencies" : {
226
- "@angular/dev-infra-private" : " https://github.com/angular/dev-infra-private-builds.git#ce1d7f6c62ff0f9569791d78920c3628c56b4574 " ,
227
+ "@angular/dev-infra-private" : " https://github.com/angular/dev-infra-private-builds.git#262cb3bb487e8dddb3c404f4f2c8b34a9a1f14c2 " ,
227
228
"@types/jasmine" : " 3.10.6" ,
228
229
"@types/node" : " 14.18.16" ,
229
230
"@types/vscode" : " 1.67.0" ,
232
233
"jasmine" : " 3.99.0" ,
233
234
"prettier" : " 2.6.2" ,
234
235
"tslint" : " 6.1.3" ,
235
- "ts-node" : " ^10.0.0 " ,
236
+ "ts-node" : " ^10.8.1 " ,
236
237
"tslint-eslint-rules" : " 5.4.0" ,
237
238
"vsce" : " 1.100.1" ,
238
239
"vscode-languageserver-protocol" : " 3.16.0" ,
Original file line number Diff line number Diff line change 2
2
3
3
set -ex -o pipefail
4
4
5
+ yarn tsc --project .ng-dev/tsconfig.json
6
+
5
7
yarn tslint --project client/tsconfig.json
6
8
yarn tslint --project server/tsconfig.json
7
9
yarn tslint --project server/src/tests/tsconfig.json
You can’t perform that action at this time.
0 commit comments