user-agents 1.1.9 → 1.1.11
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 +10 -7
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -2
- package/src/user-agents.json.gz +0 -0
package/.circleci/config.yml
CHANGED
|
@@ -128,7 +128,10 @@ jobs:
|
|
|
128
128
|
git commit -m 'Regularly scheduled user agent data update.' || true
|
|
129
129
|
- run:
|
|
130
130
|
name: Bump the patch version and trigger a new release
|
|
131
|
-
command:
|
|
131
|
+
command: |
|
|
132
|
+
npm version patch
|
|
133
|
+
git push --set-upstream origin v1-release
|
|
134
|
+
git push --tags
|
|
132
135
|
|
|
133
136
|
workflows:
|
|
134
137
|
version: 2
|
|
@@ -154,13 +157,13 @@ workflows:
|
|
|
154
157
|
- checkout:
|
|
155
158
|
filters:
|
|
156
159
|
tags:
|
|
157
|
-
only: /
|
|
160
|
+
only: /v1(\.[0-9]+)*/
|
|
158
161
|
branches:
|
|
159
162
|
ignore: /.*/
|
|
160
163
|
- build:
|
|
161
164
|
filters:
|
|
162
165
|
tags:
|
|
163
|
-
only: /
|
|
166
|
+
only: /v1(\.[0-9]+)*/
|
|
164
167
|
branches:
|
|
165
168
|
ignore: /.*/
|
|
166
169
|
requires:
|
|
@@ -168,7 +171,7 @@ workflows:
|
|
|
168
171
|
- test:
|
|
169
172
|
filters:
|
|
170
173
|
tags:
|
|
171
|
-
only: /
|
|
174
|
+
only: /v1(\.[0-9]+)*/
|
|
172
175
|
branches:
|
|
173
176
|
ignore: /.*/
|
|
174
177
|
requires:
|
|
@@ -176,7 +179,7 @@ workflows:
|
|
|
176
179
|
- deploy:
|
|
177
180
|
filters:
|
|
178
181
|
tags:
|
|
179
|
-
only: /
|
|
182
|
+
only: /v1(\.[0-9]+)*/
|
|
180
183
|
branches:
|
|
181
184
|
ignore: /.*/
|
|
182
185
|
requires:
|
|
@@ -185,11 +188,11 @@ workflows:
|
|
|
185
188
|
scheduled-release:
|
|
186
189
|
triggers:
|
|
187
190
|
- schedule:
|
|
188
|
-
cron: "
|
|
191
|
+
cron: "20 15 * * *"
|
|
189
192
|
filters:
|
|
190
193
|
branches:
|
|
191
194
|
only:
|
|
192
|
-
-
|
|
195
|
+
- v1-release
|
|
193
196
|
|
|
194
197
|
jobs:
|
|
195
198
|
- checkout
|