Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/setup-for-scripts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24'
- uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6.0.3
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5
with:
run_install: |
- args: [--filter, ., --filter, '{./scripts}...']
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
node-version: '24'

- uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6.0.3
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5

- id: matrix
run: |
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
printf "Aborting: symlinks found:\n%s" "$symlinks"; exit 1
fi

- uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6.0.3
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5

- name: Get pnpm cache info
id: pnpm-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pnpm-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: '24'
- uses: pnpm/action-setup@903f9c1a6ebcba6cf41d87230be49611ac97822e # v6.0.3
- uses: pnpm/action-setup@8912a9102ac27614460f54aedde9e1e7f9aec20d # v6.0.5

- name: Get pnpm cache info
id: pnpm-cache
Expand Down
2 changes: 1 addition & 1 deletion types/estree/estree-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ var propertyOrSpread: ESTree.Property | ESTree.SpreadElement = objectExpression.

string = property.type;
if (property.type === "Property") {
privateIdentifierOrExpression = property.key;
expression = property.key;
expressionOrPattern = property.value;
string = property.kind;
}
Expand Down
2 changes: 1 addition & 1 deletion types/estree/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export interface PrivateIdentifier extends BaseNode {

export interface Property extends BaseNode {
type: "Property";
key: Expression | PrivateIdentifier;
key: Expression;
value: Expression | Pattern; // Could be an AssignmentProperty
kind: "init" | "get" | "set";
method: boolean;
Expand Down
3 changes: 0 additions & 3 deletions types/openui5/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,4 @@
/// <reference path="./sap.ui.testrecorder.d.ts"/>
/// <reference path="./sap.ui.unified.d.ts"/>
/// <reference path="./sap.ui.ux3.d.ts"/>
/// <reference path="./sap.ui.webc.common.d.ts"/>
/// <reference path="./sap.ui.webc.fiori.d.ts"/>
/// <reference path="./sap.ui.webc.main.d.ts"/>
/// <reference path="./sap.uxap.d.ts"/>
2 changes: 2 additions & 0 deletions types/openui5/openui5-tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -294,3 +294,5 @@ const p13nEngine = new Engine();
// version 1.146.0 added - tests are not required as the type definitions are generated and the generator is sufficiently tested

// version 1.147.0 added - tests are not required as the type definitions are generated and the generator is sufficiently tested

// sap.ui.webc.* libraries removed - tests are not required as the type definitions are generated and the generator is sufficiently tested
2 changes: 1 addition & 1 deletion types/openui5/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"nonNpm": true,
"nonNpmDescription": "openui5",
"projects": [
"https://github.com/SAP/openui5"
"https://github.com/UI5/openui5"
],
"minimumTypeScriptVersion": "5.0",
"dependencies": {
Expand Down
164 changes: 0 additions & 164 deletions types/openui5/sap.ui.webc.common.d.ts

This file was deleted.

Loading