runlify 0.0.96 → 0.0.99
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/build/projectsGeneration/builders/index.js +20 -0
- package/build/projectsGeneration/index.js +2 -1
- package/build/projectsGeneration/modules/index.js +6 -15
- package/build/types/projectsGeneration/builders/index.d.ts +3 -0
- package/build/types/projectsGeneration/index.d.ts +1 -0
- package/build/types/projectsGeneration/modules/index.d.ts +1 -1
- package/build/types/types.d.ts +0 -4
- package/package.json +4 -4
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./types"), exports);
|
|
18
|
+
__exportStar(require("./buildedTypes"), exports);
|
|
19
|
+
__exportStar(require("./curlTypes"), exports);
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcHJvamVjdHNHZW5lcmF0aW9uL2J1aWxkZXJzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7QUFBQSwwQ0FBdUI7QUFDdkIsaURBQThCO0FBQzlCLDhDQUEyQiJ9
|
|
@@ -22,6 +22,7 @@ __exportStar(require("./commonEntities"), exports);
|
|
|
22
22
|
__exportStar(require("./types"), exports);
|
|
23
23
|
__exportStar(require("./defaultCatalogs"), exports);
|
|
24
24
|
__exportStar(require("./modules"), exports);
|
|
25
|
+
__exportStar(require("./builders"), exports);
|
|
25
26
|
var generateProject_1 = require("./generateProject");
|
|
26
27
|
Object.defineProperty(exports, "generateProject", { enumerable: true, get: function () { return __importDefault(generateProject_1).default; } });
|
|
27
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
28
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvcHJvamVjdHNHZW5lcmF0aW9uL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7O0FBQUEsbURBQWdDO0FBQ2hDLDBDQUF1QjtBQUN2QixvREFBaUM7QUFDakMsNENBQXlCO0FBQ3pCLDZDQUEwQjtBQUMxQixxREFBNEQ7QUFBcEQsbUlBQUEsT0FBTyxPQUFtQiJ9
|
|
@@ -1,18 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var
|
|
3
|
-
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
15
4
|
};
|
|
16
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
exports.addEmailModuleEntities = void 0;
|
|
7
|
+
var addEmailModuleEntities_1 = require("./addEmailModuleEntities");
|
|
8
|
+
Object.defineProperty(exports, "addEmailModuleEntities", { enumerable: true, get: function () { return __importDefault(addEmailModuleEntities_1).default; } });
|
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvcHJvamVjdHNHZW5lcmF0aW9uL21vZHVsZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7O0FBQUEsbUVBQTBFO0FBQWxFLGlKQUFBLE9BQU8sT0FBMEIifQ==
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export { default as addEmailModuleEntities } from './addEmailModuleEntities';
|
package/build/types/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "runlify",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.99",
|
|
4
4
|
"description": "runlify CLI",
|
|
5
5
|
"private": false,
|
|
6
6
|
"main": "build/index.js",
|
|
@@ -46,14 +46,14 @@
|
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@types/cross-spawn": "^6.0.2",
|
|
48
48
|
"@types/jest": "^26.0.20",
|
|
49
|
-
"@types/nconf": "^0.10.
|
|
49
|
+
"@types/nconf": "^0.10.3",
|
|
50
50
|
"@types/node": "^12.7.11",
|
|
51
51
|
"@types/ramda": "^0.28.15",
|
|
52
52
|
"@typescript-eslint/eslint-plugin": "^4.17.0",
|
|
53
53
|
"@typescript-eslint/parser": "^4.17.0",
|
|
54
54
|
"copyfiles": "^2.4.1",
|
|
55
55
|
"eslint": "^7.22.0",
|
|
56
|
-
"eslint-config-canonical": "^35.
|
|
56
|
+
"eslint-config-canonical": "^35.1.4",
|
|
57
57
|
"eslint-config-prettier": "^8.1.0",
|
|
58
58
|
"eslint-plugin-prettier": "^3.3.1",
|
|
59
59
|
"husky": "^5.1.3",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"prettier": "^2.2.1",
|
|
63
63
|
"pretty-quick": "^3.1.0",
|
|
64
64
|
"ts-jest": "^26.5.3",
|
|
65
|
-
"ts-node": "^10.
|
|
65
|
+
"ts-node": "^10.9.1",
|
|
66
66
|
"typescript": "^4.7.4"
|
|
67
67
|
},
|
|
68
68
|
"jest": {
|