@nx/js 17.1.0-beta.0 → 17.1.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/js",
|
|
3
|
-
"version": "17.1.0-beta.
|
|
3
|
+
"version": "17.1.0-beta.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
|
|
6
6
|
"repository": {
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"semver": "7.5.3",
|
|
58
58
|
"source-map-support": "0.5.19",
|
|
59
59
|
"tslib": "^2.3.0",
|
|
60
|
-
"@nx/devkit": "17.1.0-beta.
|
|
61
|
-
"@nx/workspace": "17.1.0-beta.
|
|
62
|
-
"@nrwl/js": "17.1.0-beta.
|
|
60
|
+
"@nx/devkit": "17.1.0-beta.3",
|
|
61
|
+
"@nx/workspace": "17.1.0-beta.3",
|
|
62
|
+
"@nrwl/js": "17.1.0-beta.3"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"verdaccio": "^5.0.4"
|
|
@@ -12,7 +12,8 @@ async function default_1(tree) {
|
|
|
12
12
|
if (!projectConfig.targets)
|
|
13
13
|
continue;
|
|
14
14
|
for (const target of Object.values(projectConfig.targets)) {
|
|
15
|
-
if (target.executor
|
|
15
|
+
if (target.executor?.startsWith('@nx/') &&
|
|
16
|
+
target.options &&
|
|
16
17
|
('buildableProjectDepsInPackageJsonType' in target.options ||
|
|
17
18
|
'updateBuildableProjectDepsInPackageJson' in target.options)) {
|
|
18
19
|
delete target.options['buildableProjectDepsInPackageJsonType'];
|
|
@@ -24,7 +24,7 @@ export default async () => {
|
|
|
24
24
|
const nx = require.resolve('nx');
|
|
25
25
|
execFileSync(
|
|
26
26
|
nx,
|
|
27
|
-
['run-many', '--targets', 'publish', '--ver', '
|
|
27
|
+
['run-many', '--targets', 'publish', '--ver', '0.0.0-e2e', '--tag', 'e2e'],
|
|
28
28
|
{ env: process.env, stdio: 'inherit' }
|
|
29
29
|
);
|
|
30
30
|
};
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export declare const swcNodeVersion = "~1.6.7";
|
|
|
8
8
|
export declare const tsLibVersion = "^2.3.0";
|
|
9
9
|
export declare const typesNodeVersion = "18.7.1";
|
|
10
10
|
export declare const verdaccioVersion = "^5.0.4";
|
|
11
|
-
export declare const typescriptVersion = "~5.
|
|
11
|
+
export declare const typescriptVersion = "~5.2.2";
|
|
12
12
|
/**
|
|
13
13
|
* The minimum version is currently determined from the lowest version
|
|
14
14
|
* that's supported by the lowest Angular supported version, e.g.
|
package/src/utils/versions.js
CHANGED
|
@@ -12,7 +12,7 @@ exports.tsLibVersion = '^2.3.0';
|
|
|
12
12
|
exports.typesNodeVersion = '18.7.1';
|
|
13
13
|
exports.verdaccioVersion = '^5.0.4';
|
|
14
14
|
// Typescript
|
|
15
|
-
exports.typescriptVersion = '~5.
|
|
15
|
+
exports.typescriptVersion = '~5.2.2';
|
|
16
16
|
/**
|
|
17
17
|
* The minimum version is currently determined from the lowest version
|
|
18
18
|
* that's supported by the lowest Angular supported version, e.g.
|