electron-chromedriver 21.0.0 → 22.0.0
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/.circleci/config.yml +1 -13
- package/.github/workflows/release.yml +2 -2
- package/README.md +5 -6
- package/package.json +3 -3
package/.circleci/config.yml
CHANGED
|
@@ -7,7 +7,7 @@ jobs:
|
|
|
7
7
|
install-test-linux:
|
|
8
8
|
docker:
|
|
9
9
|
# specify the version you desire here
|
|
10
|
-
- image: circleci/node:
|
|
10
|
+
- image: circleci/node:14-browsers
|
|
11
11
|
|
|
12
12
|
# Specify service dependencies here if necessary
|
|
13
13
|
# CircleCI maintains a library of pre-built images
|
|
@@ -49,18 +49,6 @@ jobs:
|
|
|
49
49
|
- v1-mac-dependencies-{{ checksum "package.json" }}
|
|
50
50
|
# fallback to using the latest cache if no exact match is found
|
|
51
51
|
- v1-mac-dependencies-
|
|
52
|
-
|
|
53
|
-
# Lock into Node.js version
|
|
54
|
-
- run:
|
|
55
|
-
name: Install Node.js
|
|
56
|
-
command: |
|
|
57
|
-
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash
|
|
58
|
-
export NVM_DIR="$HOME/.nvm"
|
|
59
|
-
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
|
60
|
-
nvm install v10.19.0
|
|
61
|
-
nvm alias default v10.19.0
|
|
62
|
-
echo 'export NVM_DIR=${HOME}/.nvm' >> $BASH_ENV
|
|
63
|
-
echo "[ -s '${NVM_DIR}/nvm.sh' ] && . '${NVM_DIR}/nvm.sh'" >> $BASH_ENV
|
|
64
52
|
- run: node --version
|
|
65
53
|
- run: npm --version
|
|
66
54
|
- run: npm install
|
|
@@ -18,10 +18,10 @@ jobs:
|
|
|
18
18
|
runs-on: ${{ matrix.os }}
|
|
19
19
|
steps:
|
|
20
20
|
- uses: actions/checkout@v3
|
|
21
|
-
- name: Install Dependencies
|
|
22
|
-
run: npm i
|
|
23
21
|
- name: Update Version
|
|
24
22
|
run: node script/update-version.js ${{ github.event.inputs.version }}
|
|
23
|
+
- name: Install Dependencies
|
|
24
|
+
run: npm i
|
|
25
25
|
- name: Run Tests
|
|
26
26
|
run: npm test
|
|
27
27
|
create_new_version:
|
package/README.md
CHANGED
|
@@ -3,15 +3,14 @@
|
|
|
3
3
|
[](https://circleci.com/gh/electron/chromedriver/tree/main)
|
|
4
4
|
[](https://ci.appveyor.com/project/electron-bot/chromedriver/branch/main)
|
|
5
5
|
<br>
|
|
6
|
-
[](
|
|
7
|
-
[](https://david-dm.org/electron/chromedriver)
|
|
8
|
-
<br>
|
|
6
|
+
[](https://standardjs.com/)
|
|
9
7
|
[](https://opensource.org/licenses/MIT)
|
|
8
|
+
<br>
|
|
10
9
|
[](https://www.npmjs.com/package/electron-chromedriver)
|
|
11
|
-
[](https://www.npmjs.com/
|
|
10
|
+
[](https://www.npmjs.com/package/electron-chromedriver)
|
|
12
11
|
|
|
13
|
-
Simple node module to download the [ChromeDriver](https://sites.google.com/
|
|
14
|
-
version for [Electron](
|
|
12
|
+
Simple node module to download the [ChromeDriver](https://sites.google.com/corp/chromium.org/driver/)
|
|
13
|
+
version for [Electron](https://electronjs.org).
|
|
15
14
|
|
|
16
15
|
The major version of this library tracks the major version of the Electron
|
|
17
16
|
versions released. So if you are using Electron `2.0.x` you would want to use
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "electron-chromedriver",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0",
|
|
4
4
|
"description": "Electron ChromeDriver",
|
|
5
5
|
"repository": "https://github.com/electron/chromedriver",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"extract-zip": "^2.0.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"mocha": "^
|
|
24
|
+
"mocha": "^10.1.0",
|
|
25
25
|
"standard": "^13.1.0"
|
|
26
26
|
}
|
|
27
|
-
}
|
|
27
|
+
}
|