@nx/expo 20.5.0 → 20.5.1
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/expo",
|
|
3
|
-
"version": "20.5.
|
|
3
|
+
"version": "20.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.",
|
|
6
6
|
"keywords": [
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"main": "./index",
|
|
29
29
|
"types": "index.d.ts",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@nx/devkit": "20.5.
|
|
32
|
-
"@nx/eslint": "20.5.
|
|
33
|
-
"@nx/jest": "20.5.
|
|
34
|
-
"@nx/js": "20.5.
|
|
35
|
-
"@nx/react": "20.5.
|
|
36
|
-
"@nx/web": "20.5.
|
|
37
|
-
"@nx/webpack": "20.5.
|
|
31
|
+
"@nx/devkit": "20.5.1",
|
|
32
|
+
"@nx/eslint": "20.5.1",
|
|
33
|
+
"@nx/jest": "20.5.1",
|
|
34
|
+
"@nx/js": "20.5.1",
|
|
35
|
+
"@nx/react": "20.5.1",
|
|
36
|
+
"@nx/web": "20.5.1",
|
|
37
|
+
"@nx/webpack": "20.5.1",
|
|
38
38
|
"enhanced-resolve": "^5.8.3",
|
|
39
39
|
"metro-config": "~0.80.4",
|
|
40
40
|
"metro-resolver": "~0.80.4",
|
|
@@ -45,7 +45,7 @@ async function expoApplicationGeneratorInternal(host, schema) {
|
|
|
45
45
|
// If we are using the new TS solution
|
|
46
46
|
// We need to update the workspace file (package.json or pnpm-workspaces.yaml) to include the new project
|
|
47
47
|
if (options.isTsSolutionSetup) {
|
|
48
|
-
(0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.appProjectRoot);
|
|
48
|
+
await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.appProjectRoot);
|
|
49
49
|
}
|
|
50
50
|
const lintTask = await (0, add_linting_1.addLinting)(host, {
|
|
51
51
|
...options,
|
|
@@ -36,7 +36,7 @@ async function expoLibraryGeneratorInternal(host, schema) {
|
|
|
36
36
|
throw new Error(`For publishable libs you have to provide a proper "--importPath" which needs to be a valid npm package name (e.g. my-awesome-lib or @myorg/my-lib)`);
|
|
37
37
|
}
|
|
38
38
|
if (options.isUsingTsSolutionConfig) {
|
|
39
|
-
(0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.projectRoot);
|
|
39
|
+
await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(host, options.projectRoot);
|
|
40
40
|
}
|
|
41
41
|
const initTask = await (0, init_1.default)(host, { ...options, skipFormat: true });
|
|
42
42
|
tasks.push(initTask);
|