@lowentry/react-redux 1.1.4 → 1.1.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/bitbucket-pipelines.yml +17 -16
- package/package.json +1 -1
package/bitbucket-pipelines.yml
CHANGED
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
image: node:lts
|
|
2
2
|
|
|
3
3
|
pipelines:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
4
|
+
branches:
|
|
5
|
+
master:
|
|
6
|
+
- step:
|
|
7
|
+
name: Build and Test
|
|
8
|
+
script:
|
|
9
|
+
- npm install
|
|
10
|
+
- npm test
|
|
11
|
+
- step:
|
|
12
|
+
name: Publish
|
|
13
|
+
deployment: production
|
|
14
|
+
script:
|
|
15
|
+
- npm version patch -m "Upgrade to %s [skip ci]"
|
|
16
|
+
- git push && git push --tags
|
|
17
|
+
- pipe: atlassian/npm-publish:1.1.0
|
|
18
|
+
variables:
|
|
19
|
+
NPM_TOKEN: $NPM_TOKEN
|
|
20
|
+
EXTRA_ARGS: "--access public"
|