Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
fixing wrong qunit package
Browse files Browse the repository at this point in the history
  • Loading branch information
getify committed Jan 9, 2019
1 parent 419ac27 commit b72a9ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fpo",
"version": "6.1.8",
"version": "6.1.9",
"description": "FP library for JavaScript. Supports named-argument style methods.",
"main": "./dist/fpo.js",
"scripts": {
Expand All @@ -18,7 +18,7 @@
},
"devDependencies": {
"coveralls": "~3.0.0",
"qunitjs": "~2.9.1",
"qunit": "~2.9.1",
"terser": "~3.14.1"
},
"repository": "getify/fpo",
Expand Down
2 changes: 1 addition & 1 deletion scripts/node-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else {
global.FPO = require(path.join("..","src","fpo.src.js"));
}

global.QUnit = require("qunitjs");
global.QUnit = require("qunit");

require("../tests/qunit.config.js");
require("../tests/tests.js");
Expand Down

0 comments on commit b72a9ce

Please sign in to comment.