rawsql-ts 0.11.39-beta → 0.11.40-beta
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/dist/esm/index.min.js +59 -59
- package/dist/esm/index.min.js.map +2 -2
- package/dist/index.min.js +59 -59
- package/dist/index.min.js.map +2 -2
- package/package.json +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
2
|
"name": "rawsql-ts",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.40-beta",
|
|
4
4
|
"description": "[beta]High-performance SQL parser and AST analyzer written in TypeScript. Provides fast parsing and advanced transformation capabilities.",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"build": "tsc --build",
|
|
15
15
|
"build:browser": "tsc --project tsconfig.browser.json && npm run build:copy",
|
|
16
16
|
"build:copy": "node -e \"const fs = require('fs'); const content = fs.readFileSync('dist/esm/src/index.js', 'utf8').replace(/from '\\.\\/(?!src)/g, 'from \\'./src/'); fs.writeFileSync('dist/esm/index.js', content); fs.copyFileSync('dist/esm/src/index.js.map', 'dist/esm/index.js.map');\"",
|
|
17
|
-
"build:minify": "esbuild src/index.ts --bundle --minify --outfile=dist/index.min.js --format=cjs --sourcemap && esbuild src/index.ts --bundle --minify --outfile=dist/esm/index.min.js --format=esm --sourcemap",
|
|
17
|
+
"build:minify": "esbuild src/index.ts --bundle --minify-syntax --minify-whitespace --outfile=dist/index.min.js --format=cjs --sourcemap && esbuild src/index.ts --bundle --minify-syntax --minify-whitespace --outfile=dist/esm/index.min.js --format=esm --sourcemap",
|
|
18
18
|
"build:all": "npm run clean && npm run build && npm run build:browser && npm run build:minify",
|
|
19
19
|
"release": "npm run build:all && npm pack --dry-run && npm publish",
|
|
20
20
|
"clean": "tsc --build --clean && node -e \"const fs = require('fs'); if (fs.existsSync('dist')) fs.rmSync('dist', {recursive: true, force: true});\"",
|
|
@@ -59,3 +59,4 @@
|
|
|
59
59
|
"dist"
|
|
60
60
|
]
|
|
61
61
|
}
|
|
62
|
+
|