a24z 1.0.14 → 1.0.16
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/a24z.js +0 -2
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -0
- package/dist/sourcemap-register.cjs +1 -0
- package/package.json +2 -2
package/bin/a24z.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
3
|
// This is the NPM bin entry point that loads the compiled TypeScript
|
|
4
|
-
// Always use ncc bundle for optimal performance
|
|
5
4
|
import { createRequire } from 'module';
|
|
6
5
|
import { fileURLToPath } from 'url';
|
|
7
6
|
import { resolve, dirname } from 'path';
|
|
@@ -11,7 +10,6 @@ const fs = require('fs');
|
|
|
11
10
|
const __filename = fileURLToPath(import.meta.url);
|
|
12
11
|
const __dirname = dirname(__filename);
|
|
13
12
|
|
|
14
|
-
// Always use ncc bundle for optimal performance
|
|
15
13
|
const nccBundlePath = resolve(__dirname, '../dist/index.js');
|
|
16
14
|
|
|
17
15
|
// Verify ncc bundle exists
|