Skip to content

Commit 8b3d895

Browse files
authored
CI: Fix packages publishing (#33223)
1 parent 13f90c7 commit 8b3d895

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

packages/devextreme-monorepo-tools/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,5 @@
1010
"@types/tar-fs": "2.0.4",
1111
"@types/jest": "29.5.14",
1212
"ts-jest": "29.1.3"
13-
},
14-
"publishConfig": {
15-
"directory": "npm",
16-
"linkDirectory": true
1713
}
1814
}

pnpm-lock.yaml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/scripts/common/version.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,14 @@ export function updateVersion(version: string | undefined): void {
1010
process.exit(1);
1111
}
1212

13-
const workspacesFolders = ['packages', 'apps', 'e2e', 'packages/devextreme/artifacts/npm'];
13+
const workspacesFolders = ['packages', 'apps', 'e2e'];
1414

1515
const rootWorkspacePath = path.join(ROOT_DIR, 'package.json')
1616
const workspacesPaths = workspacesFolders
1717
.map(folder => path.join(ROOT_DIR, folder, '*', 'package.json'))
1818
.concat([rootWorkspacePath]);
1919

2020
sh.sed('-i', /"version": ".*"/, `"version": "${version}"`, workspacesPaths);
21-
22-
sh.exec('pnpm install --no-frozen-lockfile');
2321
}
2422

2523
export function updateVersionJs(version: string | undefined, build?: string | undefined): void {

0 commit comments

Comments
 (0)