@nx/expo 19.6.0 → 19.6.2
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/README.md
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
|
|
23
23
|
# Nx: Smart Monorepos · Fast CI
|
|
24
24
|
|
|
25
|
-
Nx is a build system
|
|
25
|
+
Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.
|
|
26
26
|
|
|
27
27
|
This package is a [Expo plugin for Nx](https://nx.dev/expo/overview).
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/expo",
|
|
3
|
-
"version": "19.6.
|
|
3
|
+
"version": "19.6.2",
|
|
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,7 +28,7 @@
|
|
|
28
28
|
"main": "./index",
|
|
29
29
|
"types": "index.d.ts",
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@nx/devkit": "19.6.
|
|
31
|
+
"@nx/devkit": "19.6.2",
|
|
32
32
|
"chalk": "^4.1.0",
|
|
33
33
|
"enhanced-resolve": "^5.8.3",
|
|
34
34
|
"fs-extra": "^11.1.0",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
"node-fetch": "^2.6.7",
|
|
38
38
|
"tslib": "^2.3.0",
|
|
39
39
|
"tsconfig-paths": "^4.1.2",
|
|
40
|
-
"@nx/jest": "19.6.
|
|
41
|
-
"@nx/js": "19.6.
|
|
42
|
-
"@nx/eslint": "19.6.
|
|
43
|
-
"@nx/react": "19.6.
|
|
44
|
-
"@nx/web": "19.6.
|
|
45
|
-
"@nx/webpack": "19.6.
|
|
46
|
-
"@nrwl/expo": "19.6.
|
|
40
|
+
"@nx/jest": "19.6.2",
|
|
41
|
+
"@nx/js": "19.6.2",
|
|
42
|
+
"@nx/eslint": "19.6.2",
|
|
43
|
+
"@nx/react": "19.6.2",
|
|
44
|
+
"@nx/web": "19.6.2",
|
|
45
|
+
"@nx/webpack": "19.6.2",
|
|
46
|
+
"@nrwl/expo": "19.6.2"
|
|
47
47
|
},
|
|
48
48
|
"executors": "./executors.json",
|
|
49
49
|
"ng-update": {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
|
|
2
|
-
import type { Linter } from '@nx/eslint';
|
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
|
3
3
|
|
|
4
4
|
export interface Schema {
|
|
5
5
|
name: string;
|
|
@@ -13,7 +13,7 @@ export interface Schema {
|
|
|
13
13
|
pascalCaseFiles?: boolean;
|
|
14
14
|
classComponent?: boolean;
|
|
15
15
|
js: boolean; // default is false
|
|
16
|
-
linter: Linter; // default is eslint
|
|
16
|
+
linter: Linter | LinterType; // default is eslint
|
|
17
17
|
setParserOptionsProject?: boolean; // default is false
|
|
18
18
|
e2eTestRunner: 'cypress' | 'playwright' | 'detox' | 'none'; // default is playwright
|
|
19
19
|
standaloneConfig?: boolean;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
|
|
2
|
-
import type { Linter } from '@nx/eslint';
|
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* Same as the @nx/react library schema, except it removes keys: style, component, routing, appProject
|
|
@@ -13,7 +13,7 @@ export interface Schema {
|
|
|
13
13
|
tags?: string;
|
|
14
14
|
pascalCaseFiles?: boolean;
|
|
15
15
|
unitTestRunner: 'jest' | 'none';
|
|
16
|
-
linter: Linter; // default is eslint
|
|
16
|
+
linter: Linter | LinterType; // default is eslint
|
|
17
17
|
publishable?: boolean;
|
|
18
18
|
buildable?: boolean;
|
|
19
19
|
importPath?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Linter } from '@nx/eslint';
|
|
1
|
+
import { Linter, LinterType } from '@nx/eslint';
|
|
2
2
|
import { GeneratorCallback, Tree } from '@nx/devkit';
|
|
3
3
|
interface NormalizedSchema {
|
|
4
|
-
linter?: Linter;
|
|
4
|
+
linter?: Linter | LinterType;
|
|
5
5
|
projectName: string;
|
|
6
6
|
projectRoot: string;
|
|
7
7
|
setParserOptionsProject?: boolean;
|