@lowentry/react-redux 1.1.4 → 1.1.6

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.
@@ -0,0 +1,27 @@
1
+ name: on push to main
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+
7
+ concurrency:
8
+ group: ${{ github.event_name }}
9
+
10
+ jobs:
11
+ deploy:
12
+ name: "Increase version number and deploy to NPM"
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: write
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - uses: actions/setup-node@v4
19
+ with:
20
+ node-version: 'lts/*'
21
+ - run: npm ci
22
+ - run: npm test
23
+ - run: npm version patch -m "Upgrade to %s [skip ci]"
24
+ - run: git push && git push --tags
25
+ - run: npm publish --access public
26
+ env:
27
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -1,19 +1,20 @@
1
1
  image: node:lts
2
2
 
3
3
  pipelines:
4
- default:
5
- - step:
6
- name: Build and Test
7
- script:
8
- - npm install
9
- - npm test
10
- - step:
11
- name: Publish
12
- deployment: production
13
- script:
14
- - npm version patch -m "Upgrade to %s [skip ci]"
15
- - git push && git push --tags
16
- - pipe: atlassian/npm-publish:1.1.0
17
- variables:
18
- NPM_TOKEN: $NPM_TOKEN
19
- EXTRA_ARGS: "--access public"
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"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lowentry/react-redux",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Provides utilities for React and Redux.",
@@ -16,10 +16,10 @@
16
16
  "states",
17
17
  "slices"
18
18
  ],
19
- "homepage": "https://bitbucket.org/lowentry/plugin_javascript_lered/src",
19
+ "homepage": "https://github.com/patrickvane/lowentry-react-redux",
20
20
  "repository": {
21
21
  "type": "git",
22
- "url": "https://bitbucket.org/lowentry/plugin_javascript_lered/src"
22
+ "url": "https://github.com/patrickvane/lowentry-react-redux.git"
23
23
  },
24
24
  "scripts": {
25
25
  "test": "node --check index.js"