Browse Source

update uglify & rebuild fix #2000

Robin Herbots 7 years ago
parent
commit
5722a2c6b7
32 changed files with 67 additions and 57 deletions
  1. 3 1
      CHANGELOG.md
  2. 16 8
      Gruntfile.js
  3. 1 1
      bower.json
  4. 1 1
      composer.json
  5. 1 1
      dist/inputmask/bindings/inputmask.binding.js
  6. 1 1
      dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js
  7. 1 1
      dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js
  8. 1 1
      dist/inputmask/dependencyLibs/inputmask.dependencyLib.js
  9. 1 1
      dist/inputmask/global/document.js
  10. 1 1
      dist/inputmask/global/window.js
  11. 1 1
      dist/inputmask/inputmask.date.extensions.js
  12. 4 4
      dist/inputmask/inputmask.extensions.js
  13. 4 4
      dist/inputmask/inputmask.js
  14. 1 1
      dist/inputmask/inputmask.numeric.extensions.js
  15. 1 1
      dist/inputmask/jquery.inputmask.js
  16. 7 7
      dist/jquery.inputmask.bundle.js
  17. 1 1
      dist/min/inputmask/bindings/inputmask.binding.min.js
  18. 1 1
      dist/min/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.min.js
  19. 1 1
      dist/min/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.min.js
  20. 1 1
      dist/min/inputmask/dependencyLibs/inputmask.dependencyLib.min.js
  21. 1 1
      dist/min/inputmask/global/document.min.js
  22. 1 1
      dist/min/inputmask/global/window.min.js
  23. 1 1
      dist/min/inputmask/inputmask.date.extensions.min.js
  24. 2 2
      dist/min/inputmask/inputmask.extensions.min.js
  25. 2 2
      dist/min/inputmask/inputmask.min.js
  26. 1 1
      dist/min/inputmask/inputmask.numeric.extensions.min.js
  27. 1 1
      dist/min/inputmask/jquery.inputmask.min.js
  28. 2 2
      dist/min/jquery.inputmask.bundle.min.js
  29. 3 3
      package.json
  30. 2 2
      qunit/index.js
  31. 1 1
      qunit/qunit.html
  32. 1 1
      qunit/webpack.config.js

+ 3 - 1
CHANGELOG.md

@@ -1,6 +1,8 @@
 # Change Log
 # Change Log
 
 
-## [4.0.1 - 2018-09-14]
+## [4.0.2 - 2018-09-14]
+
+(4.0.1 => 4.0.2 rebuild dist with newer version of uglify #2000)
 
 
 ### Updates
 ### Updates
 - <strong>remove phone alias</strong> (~ use https://github.com/RobinHerbots/inputmask.phone or https://github.com/andr-04/inputmask-multi instead) #1981
 - <strong>remove phone alias</strong> (~ use https://github.com/RobinHerbots/inputmask.phone or https://github.com/andr-04/inputmask-multi instead) #1981

+ 16 - 8
Gruntfile.js

@@ -27,8 +27,10 @@ module.exports = function (grunt) {
                     beautify: true,
                     beautify: true,
                     mangle: false,
                     mangle: false,
                     compress: false,
                     compress: false,
-                    preserveComments: false,
-                    ASCIIOnly: true
+                    output: {
+                        ascii_only : true,
+                        comments: false
+                    }
                 }
                 }
             };
             };
             uglifyConfig[dstFileMin] = {
             uglifyConfig[dstFileMin] = {
@@ -38,8 +40,10 @@ module.exports = function (grunt) {
                     banner: createBanner(dstFileMin),
                     banner: createBanner(dstFileMin),
                     mangle: false,
                     mangle: false,
                     compress: false,
                     compress: false,
-                    preserveComments: false,
-                    ASCIIOnly: true
+                    output: {
+                        ascii_only : true,
+                        comments: false
+                    }
                 }
                 }
             };
             };
         }
         }
@@ -52,8 +56,10 @@ module.exports = function (grunt) {
                 beautify: true,
                 beautify: true,
                 mangle: false,
                 mangle: false,
                 compress: false,
                 compress: false,
-                preserveComments: false,
-                ASCIIOnly: true
+                output: {
+                    ascii_only : true,
+                    comments: false
+                }
             }
             }
         };
         };
         uglifyConfig["bundlemin"] = {
         uglifyConfig["bundlemin"] = {
@@ -63,8 +69,10 @@ module.exports = function (grunt) {
                 banner: createBanner("jquery.inputmask.bundle.js"),
                 banner: createBanner("jquery.inputmask.bundle.js"),
                 mangle: false,
                 mangle: false,
                 compress: false,
                 compress: false,
-                preserveComments: false,
-                ASCIIOnly: true
+                output: {
+                    ascii_only : true,
+                    comments: false
+                }
             }
             }
         };
         };
 
 

+ 1 - 1
bower.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "inputmask",
   "name": "inputmask",
-  "version": "4.0.1",
+  "version": "4.0.2",
   "main": [
   "main": [
 	  "./index.js",
 	  "./index.js",
     "./css/inputmask.css"
     "./css/inputmask.css"

+ 1 - 1
composer.json

@@ -1,7 +1,7 @@
 {
 {
   "name": "robinherbots/inputmask",
   "name": "robinherbots/inputmask",
   "description": "Inputmask is a javascript library which creates an input mask.  Inputmask can run against vanilla javascript, jQuery and jqlite.",
   "description": "Inputmask is a javascript library which creates an input mask.  Inputmask can run against vanilla javascript, jQuery and jqlite.",
-  "version": "4.0.1",
+  "version": "4.0.2",
   "type": "library",
   "type": "library",
   "keywords": ["jquery", "plugins", "input", "form", "inputmask", "mask"],
   "keywords": ["jquery", "plugins", "input", "form", "inputmask", "mask"],
   "homepage": "http://robinherbots.github.io/Inputmask",
   "homepage": "http://robinherbots.github.io/Inputmask",

+ 1 - 1
dist/inputmask/bindings/inputmask.binding.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {

+ 1 - 1
dist/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {

+ 1 - 1
dist/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {

+ 1 - 1
dist/inputmask/dependencyLibs/inputmask.dependencyLib.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {

+ 1 - 1
dist/inputmask/global/document.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 if (typeof define === "function" && define.amd) define(function() {
 if (typeof define === "function" && define.amd) define(function() {

+ 1 - 1
dist/inputmask/global/window.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 if (typeof define === "function" && define.amd) define(function() {
 if (typeof define === "function" && define.amd) define(function() {

+ 1 - 1
dist/inputmask/inputmask.date.extensions.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {

+ 4 - 4
dist/inputmask/inputmask.extensions.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {
@@ -17,11 +17,11 @@
 })(function(Inputmask) {
 })(function(Inputmask) {
     Inputmask.extendDefinitions({
     Inputmask.extendDefinitions({
         A: {
         A: {
-            validator: "[A-Za-zА-яЁёÀ-ÿµ]",
+            validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
             casing: "upper"
             casing: "upper"
         },
         },
         "&": {
         "&": {
-            validator: "[0-9A-Za-zА-яЁёÀ-ÿµ]",
+            validator: "[0-9A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
             casing: "upper"
             casing: "upper"
         },
         },
         "#": {
         "#": {
@@ -67,7 +67,7 @@
             },
             },
             definitions: {
             definitions: {
                 "*": {
                 "*": {
-                    validator: "[0-91-9A-Za-zА-яЁёÀ-ÿµ!#$%&'*+/=?^_`{|}~-]"
+                    validator: "[0-9\uff11-\uff19A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5!#$%&'*+/=?^_`{|}~-]"
                 },
                 },
                 "-": {
                 "-": {
                     validator: "[0-9A-Za-z-]"
                     validator: "[0-9A-Za-z-]"

+ 4 - 4
dist/inputmask/inputmask.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {
@@ -99,15 +99,15 @@
         },
         },
         definitions: {
         definitions: {
             9: {
             9: {
-                validator: "[0-91-9]",
+                validator: "[0-9\uff11-\uff19]",
                 definitionSymbol: "*"
                 definitionSymbol: "*"
             },
             },
             a: {
             a: {
-                validator: "[A-Za-zА-яЁёÀ-ÿµ]",
+                validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
                 definitionSymbol: "*"
                 definitionSymbol: "*"
             },
             },
             "*": {
             "*": {
-                validator: "[0-91-9A-Za-zА-яЁёÀ-ÿµ]"
+                validator: "[0-9\uff11-\uff19A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]"
             }
             }
         },
         },
         aliases: {},
         aliases: {},

+ 1 - 1
dist/inputmask/inputmask.numeric.extensions.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {

+ 1 - 1
dist/inputmask/jquery.inputmask.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory) {
 (function(factory) {

+ 7 - 7
dist/jquery.inputmask.bundle.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(modules) {
 (function(modules) {
@@ -107,11 +107,11 @@
     })(function(Inputmask) {
     })(function(Inputmask) {
         Inputmask.extendDefinitions({
         Inputmask.extendDefinitions({
             A: {
             A: {
-                validator: "[A-Za-zА-яЁёÀ-ÿµ]",
+                validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
                 casing: "upper"
                 casing: "upper"
             },
             },
             "&": {
             "&": {
-                validator: "[0-9A-Za-zА-яЁёÀ-ÿµ]",
+                validator: "[0-9A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
                 casing: "upper"
                 casing: "upper"
             },
             },
             "#": {
             "#": {
@@ -157,7 +157,7 @@
                 },
                 },
                 definitions: {
                 definitions: {
                     "*": {
                     "*": {
-                        validator: "[0-91-9A-Za-zА-яЁёÀ-ÿµ!#$%&'*+/=?^_`{|}~-]"
+                        validator: "[0-9\uff11-\uff19A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5!#$%&'*+/=?^_`{|}~-]"
                     },
                     },
                     "-": {
                     "-": {
                         validator: "[0-9A-Za-z-]"
                         validator: "[0-9A-Za-z-]"
@@ -284,15 +284,15 @@
             },
             },
             definitions: {
             definitions: {
                 9: {
                 9: {
-                    validator: "[0-91-9]",
+                    validator: "[0-9\uff11-\uff19]",
                     definitionSymbol: "*"
                     definitionSymbol: "*"
                 },
                 },
                 a: {
                 a: {
-                    validator: "[A-Za-zА-яЁёÀ-ÿµ]",
+                    validator: "[A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]",
                     definitionSymbol: "*"
                     definitionSymbol: "*"
                 },
                 },
                 "*": {
                 "*": {
-                    validator: "[0-91-9A-Za-zА-яЁёÀ-ÿµ]"
+                    validator: "[0-9\uff11-\uff19A-Za-z\u0410-\u044f\u0401\u0451\xc0-\xff\xb5]"
                 }
                 }
             },
             },
             aliases: {},
             aliases: {},

File diff suppressed because it is too large
+ 1 - 1
dist/min/inputmask/bindings/inputmask.binding.min.js


File diff suppressed because it is too large
+ 1 - 1
dist/min/inputmask/dependencyLibs/inputmask.dependencyLib.jqlite.min.js


+ 1 - 1
dist/min/inputmask/dependencyLibs/inputmask.dependencyLib.jquery.min.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 (function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else if(typeof exports==="object"){module.exports=factory(require("jquery"))}else{window.dependencyLib=factory(jQuery)}})(function($){return $});
 (function(factory){if(typeof define==="function"&&define.amd){define(["jquery"],factory)}else if(typeof exports==="object"){module.exports=factory(require("jquery"))}else{window.dependencyLib=factory(jQuery)}})(function($){return $});

File diff suppressed because it is too large
+ 1 - 1
dist/min/inputmask/dependencyLibs/inputmask.dependencyLib.min.js


+ 1 - 1
dist/min/inputmask/global/document.min.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 if(typeof define==="function"&&define.amd)define(function(){return document});else if(typeof exports==="object")module.exports=document;
 if(typeof define==="function"&&define.amd)define(function(){return document});else if(typeof exports==="object")module.exports=document;

+ 1 - 1
dist/min/inputmask/global/window.min.js

@@ -3,7 +3,7 @@
 * https://github.com/RobinHerbots/Inputmask
 * https://github.com/RobinHerbots/Inputmask
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Copyright (c) 2010 - 2018 Robin Herbots
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
 * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
-* Version: 4.0.1
+* Version: 4.0.2
 */
 */
 
 
 if(typeof define==="function"&&define.amd)define(function(){return window});else if(typeof exports==="object")module.exports=window;
 if(typeof define==="function"&&define.amd)define(function(){return window});else if(typeof exports==="object")module.exports=window;

File diff suppressed because it is too large
+ 1 - 1
dist/min/inputmask/inputmask.date.extensions.min.js


File diff suppressed because it is too large
+ 2 - 2
dist/min/inputmask/inputmask.extensions.min.js


File diff suppressed because it is too large
+ 2 - 2
dist/min/inputmask/inputmask.min.js


File diff suppressed because it is too large
+ 1 - 1
dist/min/inputmask/inputmask.numeric.extensions.min.js


File diff suppressed because it is too large
+ 1 - 1
dist/min/inputmask/jquery.inputmask.min.js


File diff suppressed because it is too large
+ 2 - 2
dist/min/jquery.inputmask.bundle.min.js


+ 3 - 3
package.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "inputmask",
   "name": "inputmask",
-  "version": "4.0.1",
+  "version": "4.0.2",
   "description": "Inputmask is a javascript library which creates an input mask.  Inputmask can run against vanilla javascript, jQuery and jqlite.",
   "description": "Inputmask is a javascript library which creates an input mask.  Inputmask can run against vanilla javascript, jQuery and jqlite.",
   "main": "index.js",
   "main": "index.js",
   "files": [
   "files": [
@@ -47,7 +47,7 @@
     "grunt-bump": "^0.8.0",
     "grunt-bump": "^0.8.0",
     "grunt-cli": "^1.2.0",
     "grunt-cli": "^1.2.0",
     "grunt-contrib-clean": "^1.1.0",
     "grunt-contrib-clean": "^1.1.0",
-    "grunt-contrib-uglify": "^3.4.0",
+    "grunt-contrib-uglify": "^4.0.0",
     "grunt-eslint": "^21.0.0",
     "grunt-eslint": "^21.0.0",
     "grunt-nuget": "^0.3.0",
     "grunt-nuget": "^0.3.0",
     "grunt-release": "^0.14.0",
     "grunt-release": "^0.14.0",
@@ -59,7 +59,7 @@
     "postcss": "^7.0.2",
     "postcss": "^7.0.2",
     "postcss-cssnext": "^3.1.0",
     "postcss-cssnext": "^3.1.0",
     "postcss-loader": "^2.1.6",
     "postcss-loader": "^2.1.6",
-    "qunitjs": "^2.4.1",
+    "qunit": "^2.4.1",
     "source-map-loader": "^0.2.3",
     "source-map-loader": "^0.2.3",
     "style-loader": "^0.21.0",
     "style-loader": "^0.21.0",
     "webpack": "^4.16.3",
     "webpack": "^4.16.3",

+ 2 - 2
qunit/index.js

@@ -1,4 +1,4 @@
-import "../node_modules/qunitjs/qunit/qunit.css";
+import "../node_modules/qunit/qunit/qunit.css";
 import "../css/inputmask.css";
 import "../css/inputmask.css";
 
 
 //extensions
 //extensions
@@ -21,7 +21,7 @@ import jQuery from "jquery";
 if (Inputmask.dependencyLib === jQuery)
 if (Inputmask.dependencyLib === jQuery)
     window.jQuery = Inputmask.dependencyLib;
     window.jQuery = Inputmask.dependencyLib;
 
 
-import qunit from "qunitjs";
+import qunit from "qunit";
 import "./prototypeExtensions.js";
 import "./prototypeExtensions.js";
 import simulator from "./simulator.js";
 import simulator from "./simulator.js";
 
 

+ 1 - 1
qunit/qunit.html

@@ -7,7 +7,7 @@
 <body>
 <body>
   <div id="qunit"></div>
   <div id="qunit"></div>
   <div id="qunit-fixture"></div>²
   <div id="qunit-fixture"></div>²
-  <script src="../node_modules/qunitjs/qunit/qunit.js"></script>
+  <script src="../node_modules/qunit/qunit/qunit.js"></script>
   <script src="qunit.js" charset="utf-8"></script>
   <script src="qunit.js" charset="utf-8"></script>
 </body>
 </body>
 </html>
 </html>

+ 1 - 1
qunit/webpack.config.js

@@ -55,7 +55,7 @@ module.exports = {
         filename: "./qunit.js"
         filename: "./qunit.js"
     },
     },
     externals: {
     externals: {
-        "qunitjs": "QUnit"
+        "qunit": "QUnit"
     },
     },
     module: {
     module: {
         rules: [
         rules: [