diff --git a/bin/cli-plugins b/bin/cli-plugins index 54bf0f1ed..e4b5cae51 100755 --- a/bin/cli-plugins +++ b/bin/cli-plugins @@ -303,12 +303,12 @@ async function createSeedPlugin() { { type: 'confirm', name: 'server', - message: 'Is this a server-side plugin?' + message: 'Is this plugin extending the server capabilities?' }, { type: 'confirm', name: 'client', - message: 'Is this a client-side plugin?' + message: 'Is this plugin extending the client capabilities?' }, { type: 'confirm', diff --git a/scripts/templates/plugin-client/client/.babelrc b/scripts/templates/plugin-client/client/.babelrc deleted file mode 100644 index 60be246eb..000000000 --- a/scripts/templates/plugin-client/client/.babelrc +++ /dev/null @@ -1,14 +0,0 @@ -{ - "presets": [ - "es2015" - ], - "plugins": [ - "add-module-exports", - "transform-class-properties", - "transform-decorators-legacy", - "transform-object-assign", - "transform-object-rest-spread", - "transform-async-to-generator", - "transform-react-jsx" - ] -} \ No newline at end of file diff --git a/scripts/templates/plugin-client/client/.eslintrc.json b/scripts/templates/plugin-client/client/.eslintrc.json deleted file mode 100644 index 9fe56bd14..000000000 --- a/scripts/templates/plugin-client/client/.eslintrc.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "env": { - "browser": true, - "es6": true, - "mocha": true - }, - "parserOptions": { - "sourceType": "module", - "ecmaFeatures": { - "experimentalObjectRestSpread": true, - "jsx": true - } - }, - "parser": "babel-eslint", - "plugins": [ - "react" - ], - "rules": { - "react/jsx-uses-react": "error", - "react/jsx-uses-vars": "error", - "no-console": ["warn", { "allow": ["warn", "error"] }] - } -} diff --git a/scripts/templates/plugin-client/index.js b/scripts/templates/plugin-client/index.js deleted file mode 100644 index f053ebf79..000000000 --- a/scripts/templates/plugin-client/index.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = {}; diff --git a/scripts/templates/plugin-server/index.js b/scripts/templates/plugin-server/index.js deleted file mode 100644 index f053ebf79..000000000 --- a/scripts/templates/plugin-server/index.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = {};