Skip to content

Commit 7a23428

Browse files
committed
build: prep for 18.1
* update core version in integration project * update deps in package.json * cast project to any to call markDirty that was made internal (microsoft/TypeScript@d12116d#diff-fad6af6557c1406192e30af30e0113a5eb327d60f9e2588bdce6667d619ebd04) * update versions in WORKSPACE
1 parent 888875f commit 7a23428

File tree

12 files changed

+8293
-5805
lines changed

12 files changed

+8293
-5805
lines changed

.aspect/rules/external_repository_action_cache/npm_translate_lock_LTE4Nzc1MDcwNjU=

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Input hashes for repository rule npm_translate_lock(name = "npm", pnpm_lock = "//:pnpm-lock.yaml").
33
# This file should be checked into version control along with the pnpm-lock.yaml file.
44
.npmrc=974837034
5-
pnpm-lock.yaml=943190807
6-
yarn.lock=-1098466397
7-
package.json=619455070
5+
pnpm-lock.yaml=555137830
6+
yarn.lock=1415603246
7+
package.json=1352810757
88
pnpm-workspace.yaml=1711114604
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
# @generated
12
# Input hashes for repository rule npm_translate_lock(name = "npm_integration_project", pnpm_lock = "//integration/project:pnpm-lock.yaml").
23
# This file should be checked into version control along with the pnpm-lock.yaml file.
34
.npmrc=974837034
4-
integration/project/pnpm-lock.yaml=-1557661325
5-
integration/project/yarn.lock=-1655253005
6-
integration/project/package.json=-2134990152
5+
integration/project/pnpm-lock.yaml=-2108388700
6+
integration/project/yarn.lock=1608320625
7+
integration/project/package.json=239980869
78
integration/project/pnpm-workspace.yaml=1163575902

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.13.0
1+
18.20.0

integration/lsp/ivy_spec.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,7 @@ export class AppComponent {
282282
}))!;
283283
expect(response).not.toBeNull();
284284
expect(response.signatures.length).toEqual(1);
285-
expect(response.signatures[0].label)
286-
.toContain('(from: number, length?: number | undefined): string');
285+
expect(response.signatures[0].label).toContain('(from: number, length?: number): string');
287286
expect(response.signatures[0].parameters).not.toBeUndefined();
288287
expect(response.activeParameter).toBe(1);
289288

@@ -292,7 +291,7 @@ export class AppComponent {
292291
const [start, end] = param.label as [number, number];
293292
return label.substring(start, end);
294293
});
295-
expect(paramLabels).toEqual(['from: number', 'length?: number | undefined']);
294+
expect(paramLabels).toEqual(['from: number', 'length?: number']);
296295
});
297296
});
298297

integration/project/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
"name": "angular-ls-integration-test-project",
33
"private": true,
44
"dependencies": {
5-
"@angular/common": "17.0.0-next.7",
6-
"@angular/compiler": "17.0.0-next.7",
7-
"@angular/compiler-cli": "17.0.0-next.7",
8-
"@angular/core": "17.0.0-next.7",
5+
"@angular/common": "18.1.0-rc.0",
6+
"@angular/compiler": "18.1.0-rc.0",
7+
"@angular/compiler-cli": "18.1.0-rc.0",
8+
"@angular/core": "18.1.0-rc.0",
99
"rxjs": "6.6.7",
1010
"zone.js": "0.11.5"
1111
},
1212
"devDependencies": {
13-
"ng-packagr": "^17.0.0-next.2",
14-
"typescript": "~5.2.2"
13+
"ng-packagr": "^18.0.0-next.0",
14+
"typescript": "~5.5.3"
1515
},
1616
"scripts": {
1717
"build": "ng-packagr -p libs/post/ng-package.json -c libs/post/tsconfig.json"

integration/project/pnpm-lock.yaml

Lines changed: 902 additions & 819 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration/project/yarn.lock

Lines changed: 604 additions & 577 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@
218218
"test:legacy-syntaxes": "yarn compile:syntaxes-test && yarn build:syntaxes && jasmine dist/syntaxes/test/driver.js"
219219
},
220220
"dependencies": {
221-
"@angular/language-service": "18.1.0-next.4",
222-
"typescript": "5.4.5",
221+
"@angular/language-service": "18.1.0-rc.0",
222+
"typescript": "5.5.3",
223223
"vscode-html-languageservice": "^4.2.5",
224224
"vscode-jsonrpc": "6.0.0",
225225
"vscode-languageclient": "7.0.0",
@@ -229,6 +229,7 @@
229229
},
230230
"devDependencies": {
231231
"@angular/dev-infra-private": "https://github.com/angular/dev-infra-private-builds.git#262cb3bb487e8dddb3c404f4f2c8b34a9a1f14c2",
232+
"@angular/core": "^18.1.0-rc.0",
232233
"@bazel/bazelisk": "1.18.0",
233234
"@bazel/ibazel": "0.16.2",
234235
"@types/jasmine": "3.10.7",

0 commit comments

Comments
 (0)