@nrwl/expo 0.0.0-pr-22179-271588f

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/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ (The MIT License)
2
+
3
+ Copyright (c) 2017-2023 Narwhal Technologies Inc.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ 'Software'), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,18 @@
1
+ ## @nrwl/expo has been renamed to @nx/expo!
2
+
3
+ @nrwl/expo has been renamed to [@nx/expo](https://www.npmjs.com/package/@nx/expo). Please use that instead.
4
+
5
+ [Read more here](https://nx.dev/recipes/other/rescope)
6
+
7
+ @nrwl/expo will no longer be published in Nx v18.
8
+
9
+ <p style="text-align: center;">
10
+ <picture>
11
+ <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-dark.svg">
12
+ <img alt="Nx - Smart Monorepos · Fast CI" src="https://raw.githubusercontent.com/nrwl/nx/master/images/nx-light.svg" width="100%">
13
+ </picture>
14
+ </p>
15
+
16
+ # Nx: Smart Monorepos · Fast CI
17
+
18
+ Nx is a build system with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.
package/executors.json ADDED
@@ -0,0 +1,116 @@
1
+ {
2
+ "executors": {
3
+ "update": {
4
+ "implementation": "@nx/expo/src/executors/update/update.impl",
5
+ "schema": "@nx/expo/src/executors/update/schema.json",
6
+ "description": "Start an EAS update for your expo project"
7
+ },
8
+ "build": {
9
+ "implementation": "@nx/expo/src/executors/build/build.impl",
10
+ "schema": "@nx/expo/src/executors/build/schema.json",
11
+ "description": "Start an EAS build for your expo project"
12
+ },
13
+ "build-list": {
14
+ "implementation": "@nx/expo/src/executors/build-list/build-list.impl",
15
+ "schema": "@nx/expo/src/executors/build-list/schema.json",
16
+ "description": "List all EAS builds for your Expo project"
17
+ },
18
+ "download": {
19
+ "implementation": "@nx/expo/src/executors/download/download.impl",
20
+ "schema": "@nx/expo/src/executors/download/schema.json",
21
+ "description": "Download an EAS build"
22
+ },
23
+ "run": {
24
+ "implementation": "@nx/expo/src/executors/run/run.impl",
25
+ "schema": "@nx/expo/src/executors/run/schema.json",
26
+ "description": "Run the Android app binary locally or run the iOS app binary locally"
27
+ },
28
+ "start": {
29
+ "implementation": "@nx/expo/src/executors/start/start.impl",
30
+ "schema": "@nx/expo/src/executors/start/schema.json",
31
+ "description": "Start a local dev server for the app or start a Webpack dev server for the web app"
32
+ },
33
+ "sync-deps": {
34
+ "implementation": "@nx/expo/src/executors/sync-deps/sync-deps.impl",
35
+ "schema": "@nx/expo/src/executors/sync-deps/schema.json",
36
+ "description": "Syncs dependencies to package.json (required for autolinking)."
37
+ },
38
+ "ensure-symlink": {
39
+ "implementation": "@nx/expo/src/executors/ensure-symlink/ensure-symlink.impl",
40
+ "schema": "@nx/expo/src/executors/ensure-symlink/schema.json",
41
+ "description": "Ensure workspace node_modules is symlink under app's node_modules folder."
42
+ },
43
+ "prebuild": {
44
+ "implementation": "@nx/expo/src/executors/prebuild/prebuild.impl",
45
+ "schema": "@nx/expo/src/executors/prebuild/schema.json",
46
+ "description": "Create native iOS and Android project files for building natively."
47
+ },
48
+ "install": {
49
+ "implementation": "@nx/expo/src/executors/install/install.impl",
50
+ "schema": "@nx/expo/src/executors/install/schema.json",
51
+ "description": "Install a module or other package to a project."
52
+ },
53
+ "export": {
54
+ "implementation": "@nx/expo/src/executors/export/export.impl",
55
+ "schema": "@nx/expo/src/executors/export/schema.json",
56
+ "description": "Export the JavaScript and assets for your app using Metro/webpack bundler"
57
+ }
58
+ },
59
+ "builders": {
60
+ "update": {
61
+ "implementation": "@nx/expo/src/executors/update/compat",
62
+ "schema": "@nx/expo/src/executors/update/schema.json",
63
+ "description": "Start an EAS update for your expo project"
64
+ },
65
+ "build": {
66
+ "implementation": "@nx/expo/src/executors/build/compat",
67
+ "schema": "@nx/expo/src/executors/build/schema.json",
68
+ "description": "Start an EAS build for your expo project"
69
+ },
70
+ "build-list": {
71
+ "implementation": "@nx/expo/src/executors/build-list/compat",
72
+ "schema": "@nx/expo/src/executors/build-list/schema.json",
73
+ "description": "List all EAS builds for your Expo project"
74
+ },
75
+ "download": {
76
+ "implementation": "@nx/expo/src/executors/download/compat",
77
+ "schema": "@nx/expo/src/executors/download/schema.json",
78
+ "description": "Download an EAS build"
79
+ },
80
+ "run": {
81
+ "implementation": "@nx/expo/src/executors/run/compat",
82
+ "schema": "@nx/expo/src/executors/run/schema.json",
83
+ "description": "Run the Android app binary locally or run the iOS app binary locally"
84
+ },
85
+ "start": {
86
+ "implementation": "@nx/expo/src/executors/start/compat",
87
+ "schema": "@nx/expo/src/executors/start/schema.json",
88
+ "description": "Start a local dev server for the app or start a Webpack dev server for the web app"
89
+ },
90
+ "sync-deps": {
91
+ "implementation": "@nx/expo/src/executors/sync-deps/compat",
92
+ "schema": "@nx/expo/src/executors/sync-deps/schema.json",
93
+ "description": "Syncs dependencies to package.json (required for autolinking)."
94
+ },
95
+ "ensure-symlink": {
96
+ "implementation": "@nx/expo/src/executors/ensure-symlink/compat",
97
+ "schema": "@nx/expo/src/executors/ensure-symlink/schema.json",
98
+ "description": "Ensure workspace node_modules is symlink under app's node_modules folder."
99
+ },
100
+ "prebuild": {
101
+ "implementation": "@nx/expo/src/executors/prebuild/compat",
102
+ "schema": "@nx/expo/src/executors/prebuild/schema.json",
103
+ "description": "Create native iOS and Android project files for building natively."
104
+ },
105
+ "install": {
106
+ "implementation": "@nx/expo/src/executors/install/compat",
107
+ "schema": "@nx/expo/src/executors/install/schema.json",
108
+ "description": "Install a module or other package to a project."
109
+ },
110
+ "export": {
111
+ "implementation": "@nx/expo/src/executors/export/compat",
112
+ "schema": "@nx/expo/src/executors/export/schema.json",
113
+ "description": "Export the JavaScript and assets for your app using Metro/webpack bundler"
114
+ }
115
+ }
116
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": ["@nx/expo"],
3
+ "schematics": {}
4
+ }
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from '@nx/expo';
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("@nx/expo"), exports);
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@nrwl/expo",
3
+ "version": "0.0.0-pr-22179-271588f",
4
+ "private": false,
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
+ "keywords": [
7
+ "Monorepo",
8
+ "Expo",
9
+ "React",
10
+ "Web",
11
+ "Jest",
12
+ "Native",
13
+ "CLI"
14
+ ],
15
+ "homepage": "https://nx.dev",
16
+ "bugs": {
17
+ "url": "https://github.com/nrwl/nx/issues"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "https://github.com/nrwl/nx.git",
22
+ "directory": "packages-legacy/expo"
23
+ },
24
+ "license": "MIT",
25
+ "author": "Victor Savkin",
26
+ "main": "./index.js",
27
+ "types": "index.d.ts",
28
+ "dependencies": {
29
+ "@nx/expo": "0.0.0-pr-22179-271588f"
30
+ },
31
+ "builders": "./executors.json",
32
+ "schematics": "./generators.json",
33
+ "publishConfig": {
34
+ "access": "public"
35
+ },
36
+ "nx-migrations": {
37
+ "migrations": "@nx/expo/migrations.json"
38
+ },
39
+ "type": "commonjs"
40
+ }
File without changes
@@ -0,0 +1,3 @@
1
+ // From https://github.com/kristerkari/react-native-svg-transformer#usage-with-jest
2
+ module.exports = 'SvgMock';
3
+ module.exports.ReactComponent = 'SvgMock';
@@ -0,0 +1 @@
1
+ export * from '@nx/expo/plugins/with-nx-metro';
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("@nx/expo/plugins/with-nx-metro"), exports);
@@ -0,0 +1 @@
1
+ export * from '@nx/expo/plugins/with-nx-webpack';
@@ -0,0 +1,4 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
4
+ tslib_1.__exportStar(require("@nx/expo/plugins/with-nx-webpack"), exports);
@@ -0,0 +1,6 @@
1
+ declare module '*.svg' {
2
+ import React from 'react';
3
+ import { SvgProps } from 'react-native-svg';
4
+ const content: React.FC<SvgProps>;
5
+ export default content;
6
+ }