@w5s/dev 2.0.8 → 2.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/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/projectScript.d.ts +22 -0
- package/dist/projectScript.d.ts.map +1 -0
- package/dist/projectScript.js +24 -0
- package/dist/projectScript.js.map +1 -0
- package/package.json +2 -2
- package/src/index.ts +1 -0
- package/src/projectScript.ts +21 -0
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,WAAW,CAAC;AAC1B,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,oBAAoB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -19,4 +19,5 @@ __exportStar(require("./block.js"), exports);
|
|
|
19
19
|
__exportStar(require("./file.js"), exports);
|
|
20
20
|
__exportStar(require("./json.js"), exports);
|
|
21
21
|
__exportStar(require("./project.js"), exports);
|
|
22
|
+
__exportStar(require("./projectScript.js"), exports);
|
|
22
23
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,6CAA2B;AAC3B,4CAA0B;AAC1B,4CAA0B;AAC1B,+CAA6B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,8CAA4B;AAC5B,6CAA2B;AAC3B,4CAA0B;AAC1B,4CAA0B;AAC1B,+CAA6B;AAC7B,qDAAmC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Project common scripts
|
|
3
|
+
*/
|
|
4
|
+
export declare const ProjectScript: {
|
|
5
|
+
readonly Build: "build";
|
|
6
|
+
readonly Clean: "clean";
|
|
7
|
+
readonly CodeAnalysis: "code-analysis";
|
|
8
|
+
readonly Coverage: "coverage";
|
|
9
|
+
readonly Develop: "develop";
|
|
10
|
+
readonly Docs: "docs";
|
|
11
|
+
readonly Format: "format";
|
|
12
|
+
readonly Install: "install";
|
|
13
|
+
readonly Lint: "lint";
|
|
14
|
+
readonly Prepare: "prepare";
|
|
15
|
+
readonly Release: "release";
|
|
16
|
+
readonly Rescue: "rescue";
|
|
17
|
+
readonly Spellcheck: "spellcheck";
|
|
18
|
+
readonly Test: "test";
|
|
19
|
+
readonly Validate: "validate";
|
|
20
|
+
};
|
|
21
|
+
export type ProjectScript = (typeof ProjectScript)[keyof typeof ProjectScript];
|
|
22
|
+
//# sourceMappingURL=projectScript.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"projectScript.d.ts","sourceRoot":"","sources":["../src/projectScript.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;CAgBhB,CAAC;AACX,MAAM,MAAM,aAAa,GAAG,CAAC,OAAO,aAAa,CAAC,CAAC,MAAM,OAAO,aAAa,CAAC,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ProjectScript = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Project common scripts
|
|
6
|
+
*/
|
|
7
|
+
exports.ProjectScript = {
|
|
8
|
+
Build: 'build',
|
|
9
|
+
Clean: 'clean',
|
|
10
|
+
CodeAnalysis: 'code-analysis',
|
|
11
|
+
Coverage: 'coverage',
|
|
12
|
+
Develop: 'develop',
|
|
13
|
+
Docs: 'docs',
|
|
14
|
+
Format: 'format',
|
|
15
|
+
Install: 'install',
|
|
16
|
+
Lint: 'lint',
|
|
17
|
+
Prepare: 'prepare',
|
|
18
|
+
Release: 'release',
|
|
19
|
+
Rescue: 'rescue',
|
|
20
|
+
Spellcheck: 'spellcheck',
|
|
21
|
+
Test: 'test',
|
|
22
|
+
Validate: 'validate',
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=projectScript.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"projectScript.js","sourceRoot":"","sources":["../src/projectScript.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACU,QAAA,aAAa,GAAG;IAC3B,KAAK,EAAE,OAAO;IACd,KAAK,EAAE,OAAO;IACd,YAAY,EAAE,eAAe;IAC7B,QAAQ,EAAE,UAAU;IACpB,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,MAAM,EAAE,QAAQ;IAChB,OAAO,EAAE,SAAS;IAClB,IAAI,EAAE,MAAM;IACZ,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;IAClB,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,YAAY;IACxB,IAAI,EAAE,MAAM;IACZ,QAAQ,EAAE,UAAU;CACZ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@w5s/dev",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.1",
|
|
4
4
|
"description": "Shared development constants and functions",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"config",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "eef352121316d12ce958d19e18b7b2dcec5f7d23"
|
|
47
47
|
}
|
package/src/index.ts
CHANGED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Project common scripts
|
|
3
|
+
*/
|
|
4
|
+
export const ProjectScript = {
|
|
5
|
+
Build: 'build',
|
|
6
|
+
Clean: 'clean',
|
|
7
|
+
CodeAnalysis: 'code-analysis',
|
|
8
|
+
Coverage: 'coverage',
|
|
9
|
+
Develop: 'develop',
|
|
10
|
+
Docs: 'docs',
|
|
11
|
+
Format: 'format',
|
|
12
|
+
Install: 'install',
|
|
13
|
+
Lint: 'lint',
|
|
14
|
+
Prepare: 'prepare',
|
|
15
|
+
Release: 'release',
|
|
16
|
+
Rescue: 'rescue',
|
|
17
|
+
Spellcheck: 'spellcheck',
|
|
18
|
+
Test: 'test',
|
|
19
|
+
Validate: 'validate',
|
|
20
|
+
} as const;
|
|
21
|
+
export type ProjectScript = (typeof ProjectScript)[keyof typeof ProjectScript];
|