Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions packages/tinyest-for-wgsl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinyest-for-wgsl",
"version": "0.3.1",
"version": "0.3.2",
"private": true,
"description": "Transforms JavaScript into its 'tinyest' form, to be used in generating equivalent (or close to) WGSL code.",
"keywords": [
Expand Down Expand Up @@ -32,10 +32,14 @@
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"linkDirectory": false,
Expand All @@ -48,7 +52,7 @@
"prepublishOnly": "tgpu-dev-cli prepack"
},
"dependencies": {
"tinyest": "workspace:~0.3.0"
"tinyest": "workspace:~0.3.1"
},
"devDependencies": {
"@babel/parser": "^7.27.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/tinyest-for-wgsl/tsdown.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default defineConfig({
entry: ['src/index.ts'],
outDir: 'dist',
inlineOnly: false,
format: 'esm',
format: ['cjs', 'esm'],
dts: true,
platform: 'neutral',
target: false,
Expand Down
26 changes: 17 additions & 9 deletions packages/tinyest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinyest",
"version": "0.3.0",
"version": "0.3.1",
"private": true,
"description": "A compact, fast, and embeddable JavaScript AST for transpilation.",
"keywords": [
Expand All @@ -24,16 +24,24 @@
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./*": {
"types": "./dist/*.d.ts",
"module": "./dist/*.js",
"import": "./dist/*.js",
"default": "./dist/*.cjs"
"require": {
"types": "./dist/*.d.cts",
"default": "./dist/*.cjs"
},
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
},
"linkDirectory": false,
Expand Down
2 changes: 1 addition & 1 deletion packages/tinyest/tsdown.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineConfig } from 'tsdown';
export default defineConfig({
entry: ['src/index.ts'],
outDir: 'dist',
format: 'esm',
format: ['cjs', 'esm'],
dts: true,
platform: 'neutral',
target: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/typegpu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"prepublishOnly": "tgpu-dev-cli prepack"
},
"dependencies": {
"tinyest": "workspace:~0.3.0",
"tinyest": "workspace:~0.3.1",
"tsover-runtime": "^0.0.5",
"typed-binary": "^4.3.1"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/unplugin-typegpu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unplugin-typegpu",
"version": "0.10.1",
"version": "0.10.2",
"description": "Build plugins for TypeGPU, enabling seamless JavaScript -> WGSL transpilation and improved debugging.",
"keywords": [
"babel-plugin",
Expand Down Expand Up @@ -171,8 +171,8 @@
"magic-string-ast": "^1.0.0",
"pathe": "^2.0.3",
"picomatch": "^4.0.3",
"tinyest": "workspace:~0.3.0",
"tinyest-for-wgsl": "workspace:~0.3.1",
"tinyest": "workspace:~0.3.1",
"tinyest-for-wgsl": "workspace:~0.3.2",
"unplugin": "^2.3.5"
Comment thread
iwoplaza marked this conversation as resolved.
},
"devDependencies": {
Expand Down
1 change: 0 additions & 1 deletion packages/unplugin-typegpu/tsdown.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export default defineConfig({
tsconfig: './tsconfig.json',
target: 'es2017',
platform: 'node',
unbundle: true,
sourcemap: false,
dts: true,
});
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading