mirror of
https://github.com/strapi/strapi.git
synced 2025-12-05 03:21:22 +00:00
Fix plugin email dependencies
This commit is contained in:
parent
b4539df31f
commit
ab6434fb4d
@ -23,23 +23,11 @@
|
|||||||
"prepublish": "npm run build",
|
"prepublish": "npm run build",
|
||||||
"postinstall": "node node_modules/strapi-helper-plugin/lib/internals/scripts/postinstall.js"
|
"postinstall": "node node_modules/strapi-helper-plugin/lib/internals/scripts/postinstall.js"
|
||||||
},
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"sendmail": "^1.2.0"
|
||||||
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"cross-env": "^5.1.1",
|
"strapi-helper-plugin": "3.0.0-alpha.6.7"
|
||||||
"eslint": "^4.11.0",
|
|
||||||
"eslint-config-airbnb": "^15.1.0",
|
|
||||||
"eslint-config-airbnb-base": "^11.3.2",
|
|
||||||
"eslint-config-prettier": "^2.7.0",
|
|
||||||
"eslint-import-resolver-webpack": "^0.8.3",
|
|
||||||
"eslint-plugin-babel": "^4.1.2",
|
|
||||||
"eslint-plugin-import": "^2.8.0",
|
|
||||||
"eslint-plugin-jsx-a11y": "^6.0.2",
|
|
||||||
"eslint-plugin-react": "^7.4.0",
|
|
||||||
"eslint-plugin-redux-saga": "^0.4.0",
|
|
||||||
"plop": "^1.9.0",
|
|
||||||
"prettier": "^1.8.2",
|
|
||||||
"rimraf": "^2.6.2",
|
|
||||||
"strapi-helper-plugin": "3.0.0-alpha.6.7",
|
|
||||||
"webpack": "^3.8.1"
|
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "A Strapi developer",
|
"name": "A Strapi developer",
|
||||||
@ -57,8 +45,5 @@
|
|||||||
"node": ">= 7.0.0",
|
"node": ">= 7.0.0",
|
||||||
"npm": ">= 3.0.0"
|
"npm": ">= 3.0.0"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT"
|
||||||
"dependencies": {
|
|
||||||
"sendmail": "^1.2.0"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@ -25,7 +25,8 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcryptjs": "^2.4.3",
|
"bcryptjs": "^2.4.3",
|
||||||
"jsonwebtoken": "^8.1.0"
|
"jsonwebtoken": "^8.1.0",
|
||||||
|
"sendmail": "^1.2.0"
|
||||||
},
|
},
|
||||||
"author": {
|
"author": {
|
||||||
"name": "A Strapi developer",
|
"name": "A Strapi developer",
|
||||||
|
|||||||
@ -44,6 +44,11 @@ shell.cd('../strapi');
|
|||||||
shell.exec('npm install ../strapi-generate ../strapi-generate-admin ../strapi-generate-api ../strapi-generate-new ../strapi-generate-policy ../strapi-generate-service ../strapi-utils');
|
shell.exec('npm install ../strapi-generate ../strapi-generate-admin ../strapi-generate-api ../strapi-generate-new ../strapi-generate-policy ../strapi-generate-service ../strapi-utils');
|
||||||
shell.exec('npm link');
|
shell.exec('npm link');
|
||||||
|
|
||||||
|
shell.cd('../strapi-plugin-email');
|
||||||
|
shell.exec('npm install ../strapi-helper-plugin');
|
||||||
|
shell.rm('-f', 'package-lock.json');
|
||||||
|
shell.exec('npm link');
|
||||||
|
|
||||||
shell.cd('../strapi-plugin-users-permissions');
|
shell.cd('../strapi-plugin-users-permissions');
|
||||||
shell.exec('npm install ../strapi-helper-plugin');
|
shell.exec('npm install ../strapi-helper-plugin');
|
||||||
shell.rm('-f', 'package-lock.json');
|
shell.rm('-f', 'package-lock.json');
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user