@nrwl/workspace 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/workspace has been renamed to @nx/workspace!
2
+
3
+ @nrwl/workspace has been renamed to [@nx/workspace](https://www.npmjs.com/package/@nx/workspace). Please use that instead.
4
+
5
+ [Read more here](https://nx.dev/recipes/other/rescope)
6
+
7
+ @nrwl/workspace 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,11 @@
1
+ {
2
+ "executors": {
3
+ "counter": {
4
+ "implementation": "@nx/workspace/src/executors/counter/counter.impl",
5
+ "batchImplementation": "@nx/workspace/src/executors/counter/counter.impl#batchCounter",
6
+ "schema": "@nx/workspace/src/executors/counter/schema.json",
7
+ "description": "A dummy executor useful for E2E tests.",
8
+ "hidden": true
9
+ }
10
+ }
11
+ }
@@ -0,0 +1 @@
1
+ export * from '@nx/workspace/generators';
package/generators.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/workspace/generators"), exports);
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": ["@nx/workspace"],
3
+ "schematics": {}
4
+ }
package/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from '@nx/workspace';
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/workspace"), exports);
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@nrwl/workspace",
3
+ "version": "0.0.0-pr-22179-271588f",
4
+ "private": false,
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
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/nrwl/nx.git",
9
+ "directory": "packages-legacy/workspace"
10
+ },
11
+ "keywords": [
12
+ "Monorepo",
13
+ "Angular",
14
+ "React",
15
+ "Web",
16
+ "Node",
17
+ "Nest",
18
+ "Jest",
19
+ "Cypress",
20
+ "CLI"
21
+ ],
22
+ "main": "./index.js",
23
+ "typings": "./index.d.ts",
24
+ "author": "Victor Savkin",
25
+ "license": "MIT",
26
+ "bugs": {
27
+ "url": "https://github.com/nrwl/nx/issues"
28
+ },
29
+ "homepage": "https://nx.dev",
30
+ "schematics": "./generators.json",
31
+ "builders": "./executors.json",
32
+ "dependencies": {
33
+ "@nx/workspace": "0.0.0-pr-22179-271588f"
34
+ },
35
+ "publishConfig": {
36
+ "access": "public"
37
+ },
38
+ "nx-migrations": {
39
+ "migrations": "@nx/workspace/migrations.json"
40
+ },
41
+ "type": "commonjs"
42
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "targetDefaults": {
3
+ "build": {
4
+ "dependsOn": ["^build"]
5
+ }
6
+ },
7
+ "workspaceLayout": {
8
+ "appsDir": "packages",
9
+ "libsDir": "packages"
10
+ }
11
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "targetDefaults": {
3
+ "build": {
4
+ "dependsOn": ["^build"]
5
+ }
6
+ }
7
+ }
@@ -0,0 +1 @@
1
+ export * from '@nx/workspace/tasks-runners/default';
@@ -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/workspace/tasks-runners/default"), exports);