crawler-user-agents 1.0.130 → 1.0.132
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/.github/workflows/npm-publish.yml +1 -1
- package/.travis.yml +1 -1
- package/package.json +5 -2
|
@@ -27,7 +27,7 @@ jobs:
|
|
|
27
27
|
with:
|
|
28
28
|
node-version: 20
|
|
29
29
|
registry-url: https://registry.npmjs.org/
|
|
30
|
-
- run: npm install
|
|
30
|
+
- run: npm clean-install
|
|
31
31
|
- run: git checkout .
|
|
32
32
|
- run: npm version --no-git-tag-version `node -e 'pacote=require("pacote");pacote.manifest("crawler-user-agents").then(pkgJson => { console.log(pkgJson.version); });'`
|
|
33
33
|
- run: npm version --no-git-tag-version patch
|
package/.travis.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crawler-user-agents",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.132",
|
|
4
4
|
"main": "crawler-user-agents.json",
|
|
5
5
|
"typings": "./index.d.ts",
|
|
6
6
|
"author": "Martin Monperrus <martin.monperrus@gnieh.org>",
|
|
@@ -14,5 +14,8 @@
|
|
|
14
14
|
"bugs": {
|
|
15
15
|
"url": "https://github.com/monperrus/crawler-user-agents/issues"
|
|
16
16
|
},
|
|
17
|
-
"homepage": "https://github.com/monperrus/crawler-user-agents#readme"
|
|
17
|
+
"homepage": "https://github.com/monperrus/crawler-user-agents#readme",
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"pacote": "17.0.6"
|
|
20
|
+
}
|
|
18
21
|
}
|