user-agents 1.0.1444 → 1.1.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 +3 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
- package/src/update-data.js +109 -232
- package/src/user-agents.json.gz +0 -0
package/.circleci/config.yml
CHANGED
|
@@ -99,8 +99,10 @@ jobs:
|
|
|
99
99
|
- run:
|
|
100
100
|
name: Update the user agents data
|
|
101
101
|
command: |
|
|
102
|
-
echo "$GOOGLE_ANALYTICS_CREDENTIALS" | base64 --decode > ./google-analytics-credentials.json
|
|
103
102
|
yarn update-data
|
|
103
|
+
- store_artifacts:
|
|
104
|
+
path: ~/user-agents/src/user-agents.json.gz
|
|
105
|
+
destination: user-agents.json.gz
|
|
104
106
|
- persist_to_workspace:
|
|
105
107
|
root: ~/user-agents
|
|
106
108
|
<<: *whitelist
|
|
@@ -128,7 +130,6 @@ jobs:
|
|
|
128
130
|
name: Bump the patch version and trigger a new release
|
|
129
131
|
command: npm version patch && git push && git push --tags
|
|
130
132
|
|
|
131
|
-
|
|
132
133
|
workflows:
|
|
133
134
|
version: 2
|
|
134
135
|
|