Skip to content
This repository was archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
Release package 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bpalmquist-isp authored Dec 8, 2021
1 parent 2259443 commit 612cf7d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 38 deletions.
32 changes: 9 additions & 23 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
steps:
- name: Get the code
uses: actions/checkout@v2
- name: Install NodeJS
uses: actions/setup-node@v1
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: '14.15.5'
node-version: '16'
- name: Cache npm modules
uses: actions/cache@v2
with:
Expand All @@ -34,17 +34,10 @@ jobs:
steps:
- name: Get the code
uses: actions/checkout@v2
- name: Install NodeJS
uses: actions/setup-node@v1
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: '14.15.5'
- name: Cache npm modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
node-version: '16'
- name: Install npm modules
run: npm i
- run: npm run test:unit
Expand All @@ -56,17 +49,10 @@ jobs:
steps:
- name: Get the code
uses: actions/checkout@v2
- name: Install NodeJS
uses: actions/setup-node@v1
- name: Setup NodeJS
uses: actions/setup-node@v2
with:
node-version: '14.15.5'
- name: Cache npm modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
node-version: '16'
- name: Install npm modules
run: npm i
- run: npm run build
9 changes: 1 addition & 8 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,8 @@ jobs:
- name: Install NodeJS
uses: actions/setup-node@v2
with:
node-version: '14.15.x'
node-version: '16'
registry-url: 'https://registry.npmjs.org'
- name: Cache npm modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
- name: Install npm modules
run: npm i
- name: Publish to NPM
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@istreamplanet/pebble-formik",
"version": "1.2.2",
"version": "1.4.0",
"description": "Adapts the Pebble Design System to Formik Controls",
"private": false,
"author": "iStreamPlanet",
Expand All @@ -13,7 +13,8 @@
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
Expand All @@ -28,10 +29,10 @@
"postversion": "git push --follow-tags"
},
"peerDependencies": {
"react": "^16.0.0",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"@istreamplanet/pebble": "^2.11.0",
"formik": "^2.2.6",
"node-sass": "^4.0.0",
"react-router-dom": "^5.2.0",
"react-router": "^5.2.0"
},
Expand All @@ -50,7 +51,6 @@
"@typescript-eslint/parser": "^2.26.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-standard-react": "^9.2.0",
Expand All @@ -63,14 +63,13 @@
"formik": "^2.2.6",
"gh-pages": "^2.2.0",
"microbundle-crl": "^0.13.10",
"node-sass": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"typescript": "^4.2.4"
"typescript": "3.9.9"
},
"files": [
"dist"
Expand Down

0 comments on commit 612cf7d

Please sign in to comment.