rootless-config 1.6.2 → 1.6.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli/index.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rootless-config",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "Store project config files outside the project root, auto-deploy them where tools expect them.",
5
5
  "type": "module",
6
6
  "bin": {
package/src/cli/index.js CHANGED
@@ -13,6 +13,7 @@ async function run(argv) {
13
13
  .name('rootless')
14
14
  .description('Store project configs in .root, generate them where tools expect them')
15
15
  .version('1.0.0')
16
+ .enablePositionalOptions()
16
17
 
17
18
  const registry = createCommandRegistry()
18
19
  await registry.discover()