chromedriver 141.0.4 → 141.0.5

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.
package/.envrc ADDED
@@ -0,0 +1 @@
1
+ use flake
package/flake.lock ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "nodes": {
3
+ "flake-utils": {
4
+ "inputs": {
5
+ "systems": "systems"
6
+ },
7
+ "locked": {
8
+ "lastModified": 1731533236,
9
+ "narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
10
+ "owner": "numtide",
11
+ "repo": "flake-utils",
12
+ "rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
13
+ "type": "github"
14
+ },
15
+ "original": {
16
+ "owner": "numtide",
17
+ "repo": "flake-utils",
18
+ "type": "github"
19
+ }
20
+ },
21
+ "nixpkgs": {
22
+ "locked": {
23
+ "lastModified": 1761440988,
24
+ "narHash": "sha256-2qsow3cQIgZB2g8Cy8cW+L9eXDHP6a1PsvOschk5y+E=",
25
+ "owner": "NixOS",
26
+ "repo": "nixpkgs",
27
+ "rev": "de69d2ba6c70e747320df9c096523b623d3a4c35",
28
+ "type": "github"
29
+ },
30
+ "original": {
31
+ "id": "nixpkgs",
32
+ "type": "indirect"
33
+ }
34
+ },
35
+ "root": {
36
+ "inputs": {
37
+ "flake-utils": "flake-utils",
38
+ "nixpkgs": "nixpkgs"
39
+ }
40
+ },
41
+ "systems": {
42
+ "locked": {
43
+ "lastModified": 1681028828,
44
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
45
+ "owner": "nix-systems",
46
+ "repo": "default",
47
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
48
+ "type": "github"
49
+ },
50
+ "original": {
51
+ "owner": "nix-systems",
52
+ "repo": "default",
53
+ "type": "github"
54
+ }
55
+ }
56
+ },
57
+ "root": "root",
58
+ "version": 7
59
+ }
package/flake.nix ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ description = "node-chromedriver";
3
+
4
+ inputs = {
5
+ flake-utils.url = "github:numtide/flake-utils";
6
+ };
7
+
8
+ outputs = { self, nixpkgs, flake-utils }:
9
+ flake-utils.lib.eachDefaultSystem (system:
10
+ let
11
+ pkgs = import nixpkgs {
12
+ inherit system;
13
+ overlays = [ ];
14
+ };
15
+ in
16
+ {
17
+ devShells.default = import ./shell.nix { inherit pkgs; };
18
+ }
19
+ );
20
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chromedriver",
3
- "version": "141.0.4",
3
+ "version": "141.0.5",
4
4
  "keywords": [
5
5
  "chromedriver",
6
6
  "selenium"
package/shell.nix ADDED
@@ -0,0 +1,7 @@
1
+ { pkgs ? import <nixpkgs> {} }:
2
+ pkgs.mkShell {
3
+ nativeBuildInputs = with pkgs.buildPackages; [
4
+ nodePackages_latest.nodejs
5
+ nodePackages_latest.npm
6
+ ];
7
+ }