magic-renamer 18.0.20 → 18.0.29

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/CLI-README.md ADDED
@@ -0,0 +1,8 @@
1
+ # magic-renamer CLI
2
+
3
+
4
+ ## Installation as global tool
5
+ ```bash
6
+ npm link
7
+ ```
8
+
@@ -1,6 +1,6 @@
1
1
  THIS FILE IS GENERATED. THIS FILE IS GENERATED. THIS FILE IS GENERATED.
2
2
 
3
- Assets from this folder are being shipped with this npm package (magic-renamer@18.0.20)
3
+ Assets from this folder are being shipped with this npm package (magic-renamer@18.0.28)
4
4
  created from this project.
5
5
 
6
6
  THIS FILE IS GENERATED.THIS FILE IS GENERATED. THIS FILE IS GENERATED.
package/bin/magic-renamer CHANGED
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
  var { fse, crossPlatformPath, path } = require('tnp-core');
3
3
  var path = {
4
- dist: path.join(crossPlatformPath(__dirname), '../dist/index.js'),
5
- bundle: path.join(crossPlatformPath(__dirname), '../index.js')
4
+ dist: path.join(crossPlatformPath(__dirname), '../dist/cli.js'),
5
+ bundle: path.join(crossPlatformPath(__dirname), '../cli.js')
6
6
  }
7
7
  var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
8
8
  global.globalSystemToolMode = true;
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node --inspect
2
2
  var { fse, crossPlatformPath, path } = require('tnp-core');
3
3
  var path = {
4
- dist: path.join(crossPlatformPath(__dirname), '../dist/index.js'),
5
- bundle: path.join(crossPlatformPath(__dirname), '../index.js')
4
+ dist: path.join(crossPlatformPath(__dirname), '../dist/cli.js'),
5
+ bundle: path.join(crossPlatformPath(__dirname), '../cil.js')
6
6
  }
7
7
  var p = fse.existsSync(path.dist) ? path.dist : path.bundle;
8
8
  global.globalSystemToolMode = true;
package/bin/start.js ADDED
@@ -0,0 +1,2 @@
1
+ console.log('<<< USING BUNDLED CLI >>>');
2
+ undefined
package/cli.d.ts ADDED
@@ -0,0 +1 @@
1
+ export { run } from './index';