Merge branch 'master' of github.com:boazpoolman/strapi-plugin-config-sync into comp
commit
0a10b1907d
Binary file not shown.
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 164 KiB |
|
@ -31,3 +31,4 @@ jobs:
|
|||
with:
|
||||
commit_message: 'chore: Bump version to ${{ steps.get_version.outputs.VERSION }}'
|
||||
file_pattern: 'package.json'
|
||||
branch: master
|
||||
|
|
|
@ -15,7 +15,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node: [14, 16, 18]
|
||||
node: [16, 18, 20]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
|
@ -32,7 +32,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node: [14, 16, 18]
|
||||
node: [16, 18, 20]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
|
@ -60,7 +60,7 @@ jobs:
|
|||
# runs-on: ubuntu-latest
|
||||
# strategy:
|
||||
# matrix:
|
||||
# node: [14, 16, 18]
|
||||
# node: [16, 18, 20]
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2
|
||||
# - uses: actions/setup-node@v2
|
||||
|
|
12
package.json
12
package.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "strapi-plugin-config-sync",
|
||||
"version": "1.1.2",
|
||||
"version": "1.1.3",
|
||||
"description": "Migrate your config data across environments using the CLI or Strapi admin panel.",
|
||||
"strapi": {
|
||||
"displayName": "Config Sync",
|
||||
|
@ -57,10 +57,10 @@
|
|||
"@strapi/strapi": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@strapi/design-system": "^1.3.1",
|
||||
"@strapi/helper-plugin": "^4.5.5",
|
||||
"@strapi/icons": "^1.3.1",
|
||||
"@strapi/utils": "^4.5.2",
|
||||
"@strapi/design-system": "^1.9.0",
|
||||
"@strapi/helper-plugin": "^4.13.2",
|
||||
"@strapi/icons": "^1.9.0",
|
||||
"@strapi/utils": "^4.13.2",
|
||||
"babel-eslint": "9.0.0",
|
||||
"eslint": "^7.32.0",
|
||||
"eslint-config-airbnb": "^18.2.1",
|
||||
|
@ -88,7 +88,7 @@
|
|||
},
|
||||
"homepage": "https://github.com/boazpoolman/strapi-plugin-config-sync#readme",
|
||||
"engines": {
|
||||
"node": ">=10.0.0",
|
||||
"node": ">=16.0.0",
|
||||
"npm": ">=6.0.0"
|
||||
},
|
||||
"license": "MIT",
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
"@strapi/plugin-i18n": "^4.0.0",
|
||||
"@strapi/plugin-users-permissions": "^4.0.0",
|
||||
"@strapi/strapi": "^4.0.0",
|
||||
"better-sqlite3": "7.4.6",
|
||||
"better-sqlite3": "^8.6.0",
|
||||
"strapi-plugin-config-sync": "./.."
|
||||
},
|
||||
"author": {
|
||||
|
@ -28,7 +28,7 @@
|
|||
"uuid": "2e84e366-1e09-43c2-a99f-a0d0acbc2ca5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.x.x <=18.x.x",
|
||||
"node": ">=16.x.x <=20.x.x",
|
||||
"npm": ">=6.0.0"
|
||||
},
|
||||
"license": "MIT"
|
||||
|
|
|
@ -11,6 +11,7 @@ module.exports = {
|
|||
excludedConfig: [
|
||||
"core-store.plugin_users-permissions_grant",
|
||||
"core-store.plugin_upload_metrics",
|
||||
"core-store.plugin_upload_api-folder",
|
||||
"core-store.strapi_content_types_schema",
|
||||
"core-store.ee_information",
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue