@nx/remix 16.0.0 → 16.1.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/package.json +2 -2
- package/src/index.d.ts +10 -11
- package/src/index.js +11 -21
- package/src/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/remix",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.1.1",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"generators": "./generators.json",
|
|
6
6
|
"dependencies": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"@nx/js": "^16.0.3",
|
|
9
9
|
"@nx/react": "^16.0.3",
|
|
10
10
|
"tslib": "^2.3.1",
|
|
11
|
-
"@nrwl/remix": "16.
|
|
11
|
+
"@nrwl/remix": "16.1.1"
|
|
12
12
|
},
|
|
13
13
|
"ng-update": {
|
|
14
14
|
"requirements": {},
|
package/src/index.d.ts
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
export { actionGenerator, applicationGenerator, cypressGenerator, libraryGenerator, loaderGenerator, metaGenerator, presetGenerator, resourceRouteGenerator, routerGenerator, styleGenerator, };
|
|
1
|
+
export * from './generators/action/action.impl';
|
|
2
|
+
export * from './generators/application/application.impl';
|
|
3
|
+
export * from './generators/cypress/cypress.impl';
|
|
4
|
+
export * from './generators/library/library.impl';
|
|
5
|
+
export * from './generators/loader/loader.impl';
|
|
6
|
+
export * from './generators/meta/meta.impl';
|
|
7
|
+
export * from './generators/preset/preset.impl';
|
|
8
|
+
export * from './generators/resource-route/resource-route.impl';
|
|
9
|
+
export * from './generators/route/route.impl';
|
|
10
|
+
export * from './generators/style/style.impl';
|
package/src/index.js
CHANGED
|
@@ -1,24 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
const meta_impl_1 = require("./generators/meta/meta.impl");
|
|
15
|
-
exports.metaGenerator = meta_impl_1.default;
|
|
16
|
-
const preset_impl_1 = require("./generators/preset/preset.impl");
|
|
17
|
-
exports.presetGenerator = preset_impl_1.default;
|
|
18
|
-
const resource_route_impl_1 = require("./generators/resource-route/resource-route.impl");
|
|
19
|
-
exports.resourceRouteGenerator = resource_route_impl_1.default;
|
|
20
|
-
const route_impl_1 = require("./generators/route/route.impl");
|
|
21
|
-
exports.routerGenerator = route_impl_1.default;
|
|
22
|
-
const style_impl_1 = require("./generators/style/style.impl");
|
|
23
|
-
exports.styleGenerator = style_impl_1.default;
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
tslib_1.__exportStar(require("./generators/action/action.impl"), exports);
|
|
5
|
+
tslib_1.__exportStar(require("./generators/application/application.impl"), exports);
|
|
6
|
+
tslib_1.__exportStar(require("./generators/cypress/cypress.impl"), exports);
|
|
7
|
+
tslib_1.__exportStar(require("./generators/library/library.impl"), exports);
|
|
8
|
+
tslib_1.__exportStar(require("./generators/loader/loader.impl"), exports);
|
|
9
|
+
tslib_1.__exportStar(require("./generators/meta/meta.impl"), exports);
|
|
10
|
+
tslib_1.__exportStar(require("./generators/preset/preset.impl"), exports);
|
|
11
|
+
tslib_1.__exportStar(require("./generators/resource-route/resource-route.impl"), exports);
|
|
12
|
+
tslib_1.__exportStar(require("./generators/route/route.impl"), exports);
|
|
13
|
+
tslib_1.__exportStar(require("./generators/style/style.impl"), exports);
|
|
24
14
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/remix/src/index.ts"],"names":[],"mappings":";;;AAAA,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../packages/remix/src/index.ts"],"names":[],"mappings":";;;AAAA,0EAAgD;AAChD,oFAA0D;AAC1D,4EAAkD;AAClD,4EAAkD;AAClD,0EAAgD;AAChD,sEAA4C;AAC5C,0EAAgD;AAChD,0FAAgE;AAChE,wEAA8C;AAC9C,wEAA8C"}
|