@absolutejs/absolute 0.19.0-beta.182 → 0.19.0-beta.183
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/package.json
CHANGED
|
@@ -61,6 +61,10 @@
|
|
|
61
61
|
"import": "./dist/build.js",
|
|
62
62
|
"types": "./dist/src/build.d.ts"
|
|
63
63
|
},
|
|
64
|
+
"./image": {
|
|
65
|
+
"import": "./dist/image-client/index.js",
|
|
66
|
+
"types": "./dist/src/utils/imageClient.d.ts"
|
|
67
|
+
},
|
|
64
68
|
"./react": {
|
|
65
69
|
"import": "./dist/react/index.js",
|
|
66
70
|
"types": "./dist/src/react/index.d.ts"
|
|
@@ -190,7 +194,7 @@
|
|
|
190
194
|
"url": "git+https://github.com/absolutejs/absolutejs.git"
|
|
191
195
|
},
|
|
192
196
|
"scripts": {
|
|
193
|
-
"build": "rm -rf dist && bun build src/index.ts src/build.ts src/angular/index.ts src/angular/components/index.ts src/react/index.ts src/react/hooks/index.ts src/svelte/index.ts src/vue/index.ts src/vue/components/index.ts --outdir dist --sourcemap --target=bun --external react --external react-dom --external vue --external @vue/compiler-sfc --external vue/server-renderer --external svelte --external svelte/compiler --external svelte/server --external elysia --external @elysiajs/static --external @angular/compiler-cli --external @angular/core --external @angular/common --external @angular/platform-browser --external @angular/platform-server --external @angular/ssr --external zone.js --external debug --external sharp --external @absolutejs/native-linux-x64 --external @absolutejs/native-linux-arm64 --external @absolutejs/native-darwin-x64 --external @absolutejs/native-darwin-arm64 && bun build src/cli/index.ts --outfile dist/cli/index.js --target=bun && tsc --emitDeclarationOnly --project tsconfig.build.json && mkdir -p dist/dev && cp -r src/dev/client dist/dev/client && mkdir -p dist/svelte/components && cp src/svelte/components/*.svelte dist/svelte/components/ && mkdir -p dist/vue/components && cp src/vue/components/*.vue dist/vue/components/",
|
|
197
|
+
"build": "rm -rf dist && bun build src/index.ts src/build.ts src/angular/index.ts src/angular/components/index.ts src/react/index.ts src/react/hooks/index.ts src/svelte/index.ts src/vue/index.ts src/vue/components/index.ts --outdir dist --sourcemap --target=bun --external react --external react-dom --external vue --external @vue/compiler-sfc --external vue/server-renderer --external svelte --external svelte/compiler --external svelte/server --external elysia --external @elysiajs/static --external @angular/compiler-cli --external @angular/core --external @angular/common --external @angular/platform-browser --external @angular/platform-server --external @angular/ssr --external zone.js --external debug --external sharp --external @absolutejs/native-linux-x64 --external @absolutejs/native-linux-arm64 --external @absolutejs/native-darwin-x64 --external @absolutejs/native-darwin-arm64 && bun build src/utils/imageClient.ts --outdir dist/image-client --target=browser && bun build src/cli/index.ts --outfile dist/cli/index.js --target=bun && tsc --emitDeclarationOnly --project tsconfig.build.json && mkdir -p dist/dev && cp -r src/dev/client dist/dev/client && mkdir -p dist/svelte/components && cp src/svelte/components/*.svelte dist/svelte/components/ && mkdir -p dist/vue/components && cp src/vue/components/*.vue dist/vue/components/",
|
|
194
198
|
"build:native": "./native/build.sh",
|
|
195
199
|
"db:push": "drizzle-kit push",
|
|
196
200
|
"db:studio": "drizzle-kit studio",
|
|
@@ -204,5 +208,5 @@
|
|
|
204
208
|
"typecheck": "bun run vue-tsc --noEmit"
|
|
205
209
|
},
|
|
206
210
|
"types": "./dist/src/index.d.ts",
|
|
207
|
-
"version": "0.19.0-beta.
|
|
211
|
+
"version": "0.19.0-beta.183"
|
|
208
212
|
}
|