Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New ARToolKitNFT class in the C++ Emscripten code #301

Merged
merged 22 commits into from
Apr 4, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion dist/ARToolkitNFT_im.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/ARToolkitNFT_im.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
4 changes: 2 additions & 2 deletions src/index_improved.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@

import ARControllerNFT from "./ARControllerNFT_improved";

export default {
kalwalt marked this conversation as resolved.
Show resolved Hide resolved
export {
ARControllerNFT,
};
}
5 changes: 1 addition & 4 deletions types/src/index_improved.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
import ARControllerNFT from "./ARControllerNFT_improved";
declare const _default: {
ARControllerNFT: typeof ARControllerNFT;
};
export default _default;
export { ARControllerNFT, };
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module.exports = (env, argv) => {
library: "ARToolkitNFT",
libraryTarget: "umd",
// @see: https://github.com/webpack/webpack/issues/3929
libraryExport: "default",
///libraryExport: "default",
// @see: https://github.com/webpack/webpack/issues/6522
globalObject: "typeof self !== 'undefined' ? self : this",
},
Expand Down