datagrok-tools 4.5.10 → 4.5.11
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/bin/commands/config.js +4 -1
- package/package.json +1 -1
package/bin/commands/config.js
CHANGED
|
@@ -180,8 +180,11 @@ function config(args) {
|
|
|
180
180
|
|
|
181
181
|
if (args["default"]) {
|
|
182
182
|
config["default"] = args.alias;
|
|
183
|
-
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
_fs["default"].writeFileSync(confPath, _jsYaml["default"].dump(config));
|
|
184
186
|
|
|
187
|
+
return true;
|
|
185
188
|
}
|
|
186
189
|
|
|
187
190
|
console.log("Your config file (".concat(confPath, "):"));
|
package/package.json
CHANGED