qunitx-cli 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/flake.nix +2 -2
  2. package/package.json +2 -3
package/flake.nix CHANGED
@@ -13,13 +13,13 @@
13
13
  pkgs = nixpkgs.legacyPackages."${system}";
14
14
  in {
15
15
  packages."${system}".default = napalm.legacyPackages."${system}".buildPackage ./. {
16
- nodejs = pkgs.nodejs-slim_20;
16
+ nodejs = pkgs.nodejs_20;
17
17
  PUPPETEER_SKIP_DOWNLOAD=1;
18
18
  };
19
19
 
20
20
  devShells."${system}".default = pkgs.mkShell {
21
21
  nativeBuildInputs = with pkgs; [
22
- nodejs-slim_20
22
+ nodejs_20
23
23
  ];
24
24
  };
25
25
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "qunitx-cli",
3
3
  "type": "module",
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "description": "Browser runner for QUnitx: run your qunitx tests in google-chrome",
6
6
  "main": "cli.js",
7
7
  "author": "Izel Nakri",
@@ -43,7 +43,6 @@
43
43
  "chokidar": "^3.5.3",
44
44
  "esbuild": "^0.18.14",
45
45
  "js-yaml": "^4.1.0",
46
- "jsdom": "^22.0.0",
47
46
  "kleur": "^4.1.5",
48
47
  "picomatch": "^2.3.1",
49
48
  "puppeteer": "20.9.0",
@@ -56,7 +55,7 @@
56
55
  "express": "^4.17.3",
57
56
  "prettier": "^3.0.0",
58
57
  "qunit": "^2.19.4",
59
- "qunitx": "^0.9.1",
58
+ "qunitx": "^0.9.2",
60
59
  "release-it": "^16.1.2"
61
60
  },
62
61
  "volta": {