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
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@next2d/player",
"version": "2.0.3",
"version": "2.0.4",
"description": "Experience the fast and beautiful anti-aliased rendering of WebGL. You can create rich, interactive graphics, cross-platform applications and games without worrying about browser or device compatibility.",
"author": "Toshiyuki Ienaga<ienaga@next2d.app> (https://github.com/ienaga/)",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions scripts/worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const rendererWorker = () =>
`export const workerInlineUrl = 'data:application/javascript;base64,${workerBase64}';`
);

const src = `import workerInlineUrl from "./renderer.worker.inline.js";
const src = `import { workerInlineUrl } from "./renderer.worker.inline.js";
export const $rendererWorker = new Worker(workerInlineUrl);
`;
writeFileSync(
Expand All @@ -33,7 +33,7 @@ const unzipWorker = () =>
`export const workerInlineUrl = 'data:application/javascript;base64,${workerBase64}';`
);

const src = `import workerInlineUrl from "./unzip.worker.inline.js";
const src = `import { workerInlineUrl } from "./unzip.worker.inline.js";
export const $unzipWorker = new Worker(workerInlineUrl);
`;
writeFileSync(
Expand Down
Loading