profoundjs 6.0.1 → 6.0.2
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 +1 -1
- package/profound.jse +1 -1
- package/setup/complete_install.js +4 -2
- package/setup/package.json +1 -1
- package/setup/pjsdist.savf +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
const child_process = require("child_process");
|
|
3
|
+
const path = require("path");
|
|
3
4
|
|
|
4
5
|
let args = process.argv.slice(2);
|
|
5
6
|
if (args.length > 0) {
|
|
@@ -11,9 +12,10 @@ else {
|
|
|
11
12
|
|
|
12
13
|
try {
|
|
13
14
|
child_process.execSync(
|
|
14
|
-
`npm run
|
|
15
|
+
`npm run completeInstall ${args}`,
|
|
15
16
|
{
|
|
16
|
-
stdio: "inherit"
|
|
17
|
+
stdio: "inherit",
|
|
18
|
+
cwd: path.join(__dirname, "node_modules", "profoundjs")
|
|
17
19
|
}
|
|
18
20
|
);
|
|
19
21
|
}
|
package/setup/package.json
CHANGED
package/setup/pjsdist.savf
CHANGED
|
Binary file
|