Skip to content

Commit 08fb40f

Browse files
committed
Merge branch 'release'
2 parents 7b21535 + 4098021 commit 08fb40f

8 files changed

Lines changed: 6 additions & 17 deletions

File tree

packages/unplugin-typegpu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unplugin-typegpu",
3-
"version": "0.11.2",
3+
"version": "0.11.3",
44
"description": "Build plugins for TypeGPU, enabling seamless JavaScript -> WGSL transpilation and improved debugging.",
55
"keywords": [
66
"babel-plugin",

packages/unplugin-typegpu/src/babel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { NodePath, TraverseOptions } from '@babel/traverse';
22
import defu from 'defu';
33
import { transpileFn } from 'tinyest-for-wgsl';
44
import { FORMAT_VERSION } from 'tinyest';
5-
import { t } from './core/babel-types.ts';
5+
import * as t from '@babel/types';
66
import {
77
type PluginState,
88
defaultOptions,

packages/unplugin-typegpu/src/core/babel-types.ts

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/unplugin-typegpu/src/core/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { t } from './babel-types.ts';
1+
import * as t from '@babel/types';
22
import type { NodePath, TraverseOptions } from '@babel/traverse';
33
import type { FilterPattern } from 'unplugin';
44
import { MagicStringAST } from 'magic-string-ast';

packages/unplugin-typegpu/src/core/factory.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import _traverse, { type NodePath } from '@babel/traverse';
66
import { FORMAT_VERSION } from 'tinyest';
77
import { transpileFn } from 'tinyest-for-wgsl';
88
import * as parser from '@babel/parser';
9-
import { t } from './babel-types.ts';
9+
import * as t from '@babel/types';
1010
import {
1111
defaultOptions,
1212
earlyPruneRegex,

packages/unplugin-typegpu/src/core/polyfill-process.ts

Lines changed: 0 additions & 8 deletions
This file was deleted.

packages/unplugin-typegpu/tsdown.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export default defineConfig({
99
'src/esbuild.ts',
1010
'src/farm.ts',
1111
'src/rolldown.ts',
12+
'src/rolldown-browser.ts',
1213
'src/rspack.ts',
1314
'src/vite.ts',
1415
'src/webpack.ts',

scripts/publish.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ async function main() {
8686
const args = [
8787
'publish',
8888
'--provenance',
89+
'--no-git-checks',
8990
...(tag === 'latest' ? [] : ['--tag', tag]),
9091
...(isDryRun ? ['--dry-run'] : []),
9192
];

0 commit comments

Comments
 (0)