@constructor-io/constructorio-connect-cli 1.4.2 → 1.4.4
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/LICENSE +1 -1
- package/boilerplate-repo/.github/workflows/deploy.yml +1 -1
- package/dist/commands/init.js +2 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +2 -2
package/LICENSE
CHANGED
package/dist/commands/init.js
CHANGED
|
@@ -126,9 +126,9 @@ class Init extends core_1.Command {
|
|
|
126
126
|
Init.replacePackageName(args.repoName, args.repoPath);
|
|
127
127
|
})();
|
|
128
128
|
(0, ux_action_1.uxAction)("📦 Installing dependencies", () => {
|
|
129
|
-
(0, child_process_1.execSync)(`(cd ${args.repoPath} && npm install)`);
|
|
129
|
+
(0, child_process_1.execSync)(`(cd ${args.repoPath} && npm install --loglevel=error)`);
|
|
130
130
|
// Install the CLI package in the new repo to get the latest version
|
|
131
|
-
(0, child_process_1.execSync)(`(cd ${args.repoPath} && npm install @constructor-io/constructorio-connect-cli)`);
|
|
131
|
+
(0, child_process_1.execSync)(`(cd ${args.repoPath} && npm install @constructor-io/constructorio-connect-cli --loglevel=error)`);
|
|
132
132
|
})();
|
|
133
133
|
Init.replaceConfigValues(config, connectionsDict, args.repoPath);
|
|
134
134
|
}
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@constructor-io/constructorio-connect-cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "CLI tool to enable users to interface with the Constructor Connect Ecosystem",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"constructorio",
|
|
55
55
|
"constructor"
|
|
56
56
|
],
|
|
57
|
-
"author": "
|
|
57
|
+
"author": "Constructor.io Corporation",
|
|
58
58
|
"license": "MIT",
|
|
59
59
|
"bugs": {
|
|
60
60
|
"url": "https://github.com/Constructor-io/constructorio-connect-cli/issues"
|