Refactor entrypoints
This commit is contained in:
@@ -8,4 +8,4 @@
|
||||
*/
|
||||
|
||||
const asm = require('../build/asmjs-async');
|
||||
module.exports = require("../entryAsync")(asm);
|
||||
module.exports = require("./entryAsync")(asm);
|
@@ -8,4 +8,4 @@
|
||||
*/
|
||||
|
||||
const asm = require('../build/asmjs-sync');
|
||||
module.exports = require("../entrySync")(asm);
|
||||
module.exports = require("./entrySync")(asm);
|
@@ -8,4 +8,4 @@
|
||||
*/
|
||||
|
||||
const asm = require('../build/wasm-async');
|
||||
module.exports = require("../entryAsync")(asm);
|
||||
module.exports = require("./entryAsync")(asm);
|
@@ -8,4 +8,4 @@
|
||||
*/
|
||||
|
||||
const asm = require('../build/wasm-sync');
|
||||
module.exports = require("../entrySync")(asm);
|
||||
module.exports = require("./entrySync")(asm);
|
@@ -8,4 +8,4 @@
|
||||
*/
|
||||
|
||||
// Fallback for when the export map is not followed
|
||||
module.exports = require('./variants/asmjs-async');
|
||||
module.exports = require('./entrypoint/asmjs-async');
|
||||
|
@@ -8,4 +8,4 @@
|
||||
*/
|
||||
|
||||
// Fallback for when the export map is not followed
|
||||
module.exports = require('./variants/asmjs-sync');
|
||||
module.exports = require('./entrypoint/asmjs-sync');
|
||||
|
Reference in New Issue
Block a user