@timeax/scaffold 0.0.6 → 0.0.7
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/.idea/dictionaries/project.xml +1 -0
- package/dist/cli.cjs +1 -2
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.mjs +1 -2
- package/dist/cli.mjs.map +1 -1
- package/package.json +2 -2
- package/src/cli/main.ts +1 -0
package/dist/cli.mjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
1
2
|
import readline from 'readline';
|
|
2
3
|
import path2 from 'path';
|
|
3
4
|
import fs8 from 'fs';
|
|
@@ -9,8 +10,6 @@ import { transform } from 'esbuild';
|
|
|
9
10
|
import { minimatch } from 'minimatch';
|
|
10
11
|
import chokidar from 'chokidar';
|
|
11
12
|
|
|
12
|
-
// src/cli/main.ts
|
|
13
|
-
|
|
14
13
|
// src/schema/index.ts
|
|
15
14
|
var SCAFFOLD_ROOT_DIR = ".scaffold";
|
|
16
15
|
|