Skip to content

Commit

Permalink
Merge pull request mozilla#29 from dmose/fix-loading-with-symbol-name…
Browse files Browse the repository at this point in the history
…s-28

Fix issue loading as a JSM (fixes mozilla#28)
  • Loading branch information
dmose authored Jul 14, 2022
2 parents 2f6cc44 + 2b0e45c commit 8228a67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vendor/mozjexl.jsm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable */this["mozjexl.jsm"] =
/* eslint-disable */this["mozjexl"] =
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
output: {
path: path.resolve(__dirname, "vendor/"),
filename: "[name].jsm",
library: "[name].jsm",
library: "[name]",
libraryTarget: "this"
},
plugins: [
Expand Down

0 comments on commit 8228a67

Please sign in to comment.