@nrwl/nx-cloud 0.0.0-replaced-in-pipeline

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 ADDED
@@ -0,0 +1,11 @@
1
+ # Nx Cloud
2
+
3
+ <a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nd/3.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/">Creative Commons Attribution-NoDerivs 3.0 Unported License</a>.
4
+ [![NPM Version](https://badge.fury.io/js/%40nrwl%2Fworkspace.svg)](https://www.npmjs.com/nx-cloud)
5
+ [![Join the chat at https://gitter.im/nrwl-nx/community](https://badges.gitter.im/nrwl-nx/community.svg)](https://gitter.im/nrwl-nx/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6
+ [![Join us @nrwl/community on slack](https://img.shields.io/badge/slack-%40nrwl%2Fcommunity-brightgreen)](https://bit.ly/2ZApcSo)
7
+
8
+ Distributed caching and analytics for your Nx Workspace.
9
+
10
+ - Learn more about Nx at [nx.dev](https://nx.dev/).
11
+ - Learn more about Nx Cloud at [nx.app](https://nx.app/).
@@ -0,0 +1,4 @@
1
+ {
2
+ "extends": ["nx-cloud"],
3
+ "schematics": ""
4
+ }
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = require('nx-cloud');
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@nrwl/nx-cloud",
3
+ "version": "0.0.0-replaced-in-pipeline",
4
+ "description": "Distributed caching and task execution for Lerna and Nx",
5
+ "keywords": [
6
+ "Monorepo",
7
+ "Nx",
8
+ "Nx Cloud"
9
+ ],
10
+ "main": "index.js",
11
+ "author": "Victor Savkin",
12
+ "license": "proprietary",
13
+ "bugs": {
14
+ "url": "https://github.com/nrwl/nx/issues"
15
+ },
16
+ "homepage": "https://nx.app",
17
+ "generators": "./generators.json",
18
+ "dependencies": {
19
+ "nx-cloud": "workspace:*"
20
+ }
21
+ }
package/project.json ADDED
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "nx-packages-nrwl-nx-cloud",
3
+ "$schema": "../../../node_modules/nx/schemas/project-schema.json",
4
+ "projectType": "library",
5
+ "generators": {},
6
+ "targets": {
7
+ "build": {
8
+ "command": "cp -r libs/nx-packages/nrwl-nx-cloud dist/libs/nx-packages/",
9
+ "outputs": ["{workspaceRoot}/dist/libs/nx-packages/nrwl-nx-cloud"]
10
+ },
11
+ "lint": {
12
+ "executor": "nx:noop"
13
+ }
14
+ }
15
+ }