rigjs 3.0.1 → 3.0.3
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 +6 -6
- package/built/index.js +337 -285
- package/demo/package.json +1 -1
- package/lib/classes/RigConfig.ts +3 -2
- package/package.json +2 -2
package/demo/package.json
CHANGED
package/lib/classes/RigConfig.ts
CHANGED
|
@@ -75,8 +75,9 @@ class RigConfig {
|
|
|
75
75
|
try {
|
|
76
76
|
let pkgStr: string;
|
|
77
77
|
if (rigDep.dev) {
|
|
78
|
-
pkgStr = fsHelper.readPkgStrInRepo(rigName);
|
|
79
|
-
print.info(`${rigName} is in deleloping.Validating
|
|
78
|
+
// pkgStr = fsHelper.readPkgStrInRepo(rigName);
|
|
79
|
+
print.info(`${rigName} is in deleloping.Skip Validating.`);
|
|
80
|
+
continue;
|
|
80
81
|
} else {
|
|
81
82
|
const cmd = `git fetch ${rigDep.source} refs/tags/${rigDep.version} && git show FETCH_HEAD:package.json`;
|
|
82
83
|
print.info(`validateDeps:${cmd}`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rigjs",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.3",
|
|
4
4
|
"description": "A multi-repos dev tool based on yarn and git.Rigjs is intended to be the simplest way to develop,share and deliver codes between different developers or different projects.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"modular",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"test": "jest",
|
|
24
24
|
"test:init": "yarn build && cd demo && ts-node ../built/index.js init",
|
|
25
25
|
"p": "cd demo && node ../lib/rig/index.js publish",
|
|
26
|
-
"prei": "cd demo && node ../lib/rig/index.js preinstall",
|
|
27
26
|
"posti": "cd demo && node ../lib/rig/index.js postinstall",
|
|
27
|
+
"prei": "cd demo && node ../built/index.js preinstall",
|
|
28
28
|
"c": "d demo && node ../lib/rig/index.js check",
|
|
29
29
|
"envmake": "cd demo && node ../lib/rig/index.js --env prod_view_zhs",
|
|
30
30
|
"t": "node lib/rig/index.js tag",
|