@nx/workspace 19.0.0-beta.5 → 19.0.0-beta.7
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/workspace",
|
|
3
|
-
"version": "19.0.0-beta.
|
|
3
|
+
"version": "19.0.0-beta.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.",
|
|
6
6
|
"repository": {
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@nx/devkit": "19.0.0-beta.
|
|
64
|
+
"@nx/devkit": "19.0.0-beta.7",
|
|
65
65
|
"chalk": "^4.1.0",
|
|
66
66
|
"enquirer": "~2.3.6",
|
|
67
67
|
"tslib": "^2.3.0",
|
|
68
68
|
"yargs-parser": "21.1.1",
|
|
69
|
-
"nx": "19.0.0-beta.
|
|
70
|
-
"@nrwl/workspace": "19.0.0-beta.
|
|
69
|
+
"nx": "19.0.0-beta.7",
|
|
70
|
+
"@nrwl/workspace": "19.0.0-beta.7"
|
|
71
71
|
},
|
|
72
72
|
"publishConfig": {
|
|
73
73
|
"access": "public"
|
|
@@ -16,7 +16,6 @@ async function presetGenerator(tree, options) {
|
|
|
16
16
|
exports.presetGenerator = presetGenerator;
|
|
17
17
|
exports.default = presetGenerator;
|
|
18
18
|
async function createPreset(tree, options) {
|
|
19
|
-
console.log('Crate preset');
|
|
20
19
|
const nxJson = (0, devkit_1.readNxJson)(tree);
|
|
21
20
|
const addPlugin = process.env.NX_ADD_PLUGINS !== 'false' &&
|
|
22
21
|
nxJson.useInferencePlugins !== false;
|
|
@@ -238,11 +237,8 @@ async function createPreset(tree, options) {
|
|
|
238
237
|
});
|
|
239
238
|
}
|
|
240
239
|
else if (options.preset === presets_1.Preset.ReactNative) {
|
|
241
|
-
console.log('Before require');
|
|
242
240
|
const { reactNativeApplicationGenerator } = require('@nx' +
|
|
243
241
|
'/react-native');
|
|
244
|
-
console.log('Hello', reactNativeApplicationGenerator);
|
|
245
|
-
console.log('Active require');
|
|
246
242
|
return reactNativeApplicationGenerator(tree, {
|
|
247
243
|
name: options.name,
|
|
248
244
|
directory: (0, path_1.join)('apps', options.name),
|