-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from openimis/develop
April 2021 release
- Loading branch information
Showing
9 changed files
with
116 additions
and
134 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
{ | ||
"presets": [ | ||
["env", { | ||
["@babel/preset-env", { | ||
"modules": false | ||
}], | ||
"stage-0", | ||
"react" | ||
["@babel/preset-react"] | ||
], | ||
"plugins": [ | ||
"@babel/plugin-transform-runtime", | ||
"@babel/plugin-proposal-class-properties" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages | ||
|
||
name: Node.js Package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
- run: yarn install | ||
- run: yarn build | ||
|
||
publish-npm: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
registry-url: https://registry.npmjs.org/ | ||
scope: openimis | ||
- run: yarn install | ||
- run: yarn build | ||
- run: npm publish --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | ||
|
||
publish-gpr: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
registry-url: https://npm.pkg.github.com/ | ||
- run: yarn install | ||
- run: yarn build | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,98 +1,45 @@ | ||
{ | ||
"name": "@openimis/fe-admin", | ||
"version": "1.1.0", | ||
"version": "1.2.0-rc4", | ||
"license": "AGPL-3.0-only", | ||
"description": "openIMIS Frontend Admin reference module", | ||
"repository": "openimis/openimis-fe-admin_js", | ||
"main": "dist/index.js", | ||
"module": "dist/index.es.js", | ||
"jsnext:main": "dist/index.es.js", | ||
"engines": { | ||
"node": ">=8", | ||
"npm": ">=5" | ||
}, | ||
"scripts": { | ||
"test": "cross-env CI=1 react-scripts test --env=jsdom", | ||
"test:watch": "react-scripts test --env=jsdom", | ||
"build": "rollup -c", | ||
"start": "rollup -c -w", | ||
"prepare": "yarn run build", | ||
"predeploy": "cd example && yarn install && yarn run build", | ||
"deploy": "gh-pages -d example/build" | ||
"start": "rollup -c -w" | ||
}, | ||
"peerDependencies": { | ||
"@date-io/core": "^1.3.6", | ||
"@material-ui/core": "^4.3.3", | ||
"@material-ui/icons": "^4.2.1", | ||
"@material-ui/pickers": "^3.2.2", | ||
"@openimis/fe-core": ">=1.1.0", | ||
"history": "^4.9.0", | ||
"lodash": "^4.17.15", | ||
"lodash-uuid": "^0.0.3", | ||
"moment": "^2.24.0", | ||
"prop-types": "^15.5.4", | ||
"react": "^16.8.6", | ||
"react-autosuggest": "^9.4.3", | ||
"react-dom": "^16.8.6", | ||
"react-intl": "^2.9.0", | ||
"react-redux": "^7.0.3", | ||
"react-router": "^5.0.0", | ||
"react-router-dom": "^5.0.0", | ||
"redux": "^4.0.1", | ||
"redux-api-middleware": "^3.0.1", | ||
"redux-thunk": "^2.3.0" | ||
"peerDependency": { | ||
"react-intl": "^5.8.1" | ||
}, | ||
"devDependencies": { | ||
"@date-io/core": "^1.3.6", | ||
"@material-ui/core": "^4.3.3", | ||
"@material-ui/icons": "^4.2.1", | ||
"@material-ui/pickers": "^3.2.2", | ||
"@openimis/fe-core": ">=1.1.0", | ||
"@svgr/rollup": "^2.4.1", | ||
"babel-cli": "^6.26.0", | ||
"babel-core": "^6.26.3", | ||
"babel-eslint": "^10.0.3", | ||
"babel-plugin-external-helpers": "^6.22.0", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-react": "^6.24.1", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"classnames": "^2.2.6", | ||
"cross-env": "^5.1.4", | ||
"eslint": "^6.5.1", | ||
"eslint-config-standard": "^14.1.0", | ||
"eslint-config-standard-react": "^9.2.0", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-node": "^10.0.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-react": "^7.15.0", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"gh-pages": "^1.2.0", | ||
"history": "^4.9.0", | ||
"lodash": "^4.17.15", | ||
"lodash-uuid": "^0.0.3", | ||
"moment": "^2.24.0", | ||
"prop-types": "^15.5.4", | ||
"react": "^16.8.6", | ||
"react-autosuggest": "^9.4.3", | ||
"react-dom": "^16.8.6", | ||
"react-intl": "^2.9.0", | ||
"react-redux": "^7.0.3", | ||
"react-router": "^5.0.0", | ||
"react-router-dom": "^5.0.0", | ||
"react-scripts": "^1.1.4", | ||
"redux": "^4.0.1", | ||
"redux-api-middleware": "^3.0.1", | ||
"redux-thunk": "^2.3.0", | ||
"rollup": "^0.64.1", | ||
"rollup-plugin-babel": "^3.0.7", | ||
"rollup-plugin-commonjs": "^9.1.3", | ||
"rollup-plugin-json": "^4.0.0", | ||
"rollup-plugin-node-resolve": "^3.3.0", | ||
"rollup-plugin-peer-deps-external": "^2.2.0", | ||
"rollup-plugin-postcss": "^1.6.2", | ||
"rollup-plugin-url": "^1.4.0" | ||
"@babel/cli": "^7.8.4", | ||
"@babel/core": "^7.9.6", | ||
"@babel/plugin-proposal-class-properties": "^7.8.3", | ||
"@babel/plugin-transform-runtime": "^7.9.6", | ||
"@babel/preset-env": "^7.9.6", | ||
"@babel/preset-react": "^7.9.4", | ||
"@babel/runtime": "^7.9.6", | ||
"@rollup/plugin-babel": "^5.0.0", | ||
"@rollup/plugin-commonjs": "^11.1.0", | ||
"@rollup/plugin-json": "^4.0.3", | ||
"@rollup/plugin-node-resolve": "^7.1.3", | ||
"@rollup/plugin-url": "^5.0.0", | ||
"moment": "^2.25.3", | ||
"prop-types": "^15.7.2", | ||
"react-autosuggest": "^10.0.2", | ||
"react-router-dom": "^5.2.0", | ||
"redux": "^4.0.5", | ||
"redux-api-middleware": "^3.2.1", | ||
"rollup": "^2.10.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
] | ||
], | ||
"dependencies": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,40 @@ | ||
import babel from 'rollup-plugin-babel' | ||
import commonjs from 'rollup-plugin-commonjs' | ||
import external from 'rollup-plugin-peer-deps-external' | ||
import postcss from 'rollup-plugin-postcss' | ||
import resolve from 'rollup-plugin-node-resolve' | ||
import url from 'rollup-plugin-url' | ||
import json from 'rollup-plugin-json' | ||
import svgr from '@svgr/rollup' | ||
|
||
import babel from '@rollup/plugin-babel' | ||
import json from '@rollup/plugin-json' | ||
import pkg from './package.json' | ||
|
||
export default { | ||
input: 'src/index.js', | ||
output: [ | ||
{ | ||
file: pkg.main, | ||
format: 'cjs', | ||
file: pkg.module, | ||
format: 'es', | ||
sourcemap: true | ||
}, | ||
{ | ||
file: pkg.module, | ||
format: 'es', | ||
file: 'dist/index.js', | ||
format: 'cjs', | ||
sourcemap: true | ||
} | ||
], | ||
external: [ | ||
/^@babel.*/, | ||
/^@date-io\/.*/, | ||
/^@material-ui\/.*/, | ||
/^@openimis.*/, | ||
"classnames", | ||
"clsx", | ||
"history", | ||
/^lodash.*/, | ||
"moment", | ||
"prop-types", | ||
/^react.*/, | ||
/^redux.*/ | ||
], | ||
plugins: [ | ||
json(), | ||
external(), | ||
postcss({ | ||
modules: true | ||
}), | ||
url(), | ||
svgr(), | ||
babel({ | ||
exclude: 'node_modules/**', | ||
plugins: [ 'external-helpers' ] | ||
babelHelpers: 'runtime' | ||
}), | ||
resolve(), | ||
commonjs() | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters