@nstudio/web 19.0.0 → 20.0.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/README.md
CHANGED
@@ -2,7 +2,6 @@
|
|
2
2
|
<p align="center"><img src="https://raw.githubusercontent.com/nstudio/xplat/master/xplat-logo.png" align="center" width="400"></p>
|
3
3
|
<div align="center">
|
4
4
|
|
5
|
-
[](https://travis-ci.org/nstudio/xplat)
|
6
5
|
[]()
|
7
6
|
[](https://www.npmjs.com/@nstudio/schematics)
|
8
7
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nstudio/web",
|
3
|
-
"version": "
|
3
|
+
"version": "20.0.1",
|
4
4
|
"description": "Web Plugin for xplat",
|
5
5
|
"homepage": "https://nstudio.io/xplat",
|
6
6
|
"repository": {
|
@@ -30,9 +30,9 @@
|
|
30
30
|
"migrations": "./migrations.json"
|
31
31
|
},
|
32
32
|
"dependencies": {
|
33
|
-
"@nx/web": "^
|
33
|
+
"@nx/web": "^20.0.0"
|
34
34
|
},
|
35
35
|
"peerDependencies": {
|
36
|
-
"@nstudio/xplat": "
|
36
|
+
"@nstudio/xplat": "20.0.1"
|
37
37
|
}
|
38
38
|
}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = default_1;
|
3
4
|
const schematics_1 = require("@angular-devkit/schematics");
|
4
5
|
const xplat_utils_1 = require("@nstudio/xplat-utils");
|
5
6
|
function default_1(options) {
|
@@ -10,4 +11,3 @@ function default_1(options) {
|
|
10
11
|
: (0, schematics_1.noop)(),
|
11
12
|
]);
|
12
13
|
}
|
13
|
-
exports.default = default_1;
|
@@ -1,5 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.default = default_1;
|
3
4
|
const schematics_1 = require("@angular-devkit/schematics");
|
4
5
|
const xplat_1 = require("@nstudio/xplat");
|
5
6
|
const xplat_utils_1 = require("@nstudio/xplat-utils");
|
@@ -31,4 +32,3 @@ function default_1(options) {
|
|
31
32
|
xplat_2.XplatWebHelpers.updateRootDeps(options),
|
32
33
|
]);
|
33
34
|
}
|
34
|
-
exports.default = default_1;
|
package/src/utils/testing.js
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
exports.runSchematic = runSchematic;
|
4
|
+
exports.callRule = callRule;
|
4
5
|
const path_1 = require("path");
|
5
6
|
const testing_1 = require("@angular-devkit/schematics/testing");
|
6
7
|
const testRunner = new testing_1.SchematicTestRunner('@nstudio/web', (0, path_1.join)(__dirname, '../../collection.json'));
|
7
8
|
function runSchematic(schematicName, options, tree) {
|
8
9
|
return testRunner.runSchematic(schematicName, options, tree);
|
9
10
|
}
|
10
|
-
exports.runSchematic = runSchematic;
|
11
11
|
function callRule(rule, tree) {
|
12
12
|
return testRunner.callRule(rule, tree).toPromise();
|
13
13
|
}
|
14
|
-
exports.callRule = callRule;
|
package/src/utils/versions.js
CHANGED