Skip to content

Commit cb9b9c3

Browse files
committed
Removing support for tailwindcss
1 parent 0f278cd commit cb9b9c3

File tree

6 files changed

+2
-58
lines changed

6 files changed

+2
-58
lines changed

generator/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ module.exports = (api, options) => {
1111

1212
if (options.scaffold) optionals.addBaseComponents(api);
1313
if (options.prettier) optionals.addPrettierConfig(api);
14-
if (options.tailwind) optionals.addTailwindConfig(api);
1514

1615
api.onCreateComplete(() => {
1716
if (!api.hasPlugin("router")) {

optionals/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const addPrettierConfig = require("./prettier/index");
22
const addBaseComponents = require("./baseComponents/index");
3-
const addTailwindConfig = require("./tailwind/index");
43

5-
module.exports = { addPrettierConfig, addBaseComponents, addTailwindConfig };
4+
module.exports = { addPrettierConfig, addBaseComponents };

optionals/tailwind/index.js

Lines changed: 0 additions & 38 deletions
This file was deleted.

optionals/tailwind/template/src/assets/css/tailwind.css

Lines changed: 0 additions & 5 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@
1111
"vue",
1212
"cli",
1313
"clean",
14-
"clear",
1514
"utility",
1615
"plugin",
1716
"prettier",
18-
"tailwind",
1917
"configuration",
20-
"configurations"
18+
"base component"
2119
],
2220
"author": "Miguel Manjarres",
2321
"license": "MIT",

prompts.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,6 @@ module.exports = pkg => {
99
description: "In addition to deleting all pre-built components, it will add lodash and the necessary configuration for supporting base components.",
1010
link: "https://github.com/DevTony101/vue-cli-plugin-clean#Features",
1111
},
12-
{
13-
type: "confirm",
14-
name: "tailwind",
15-
message: "Add support for tailwind?",
16-
default: true,
17-
group: "Strongly recommended",
18-
description: "This will install tailwind and add the necessary configuration files.",
19-
link: "https://github.com/DevTony101/vue-cli-plugin-clean#Features",
20-
}
2112
]
2213

2314
if ('@vue/eslint-config-prettier' in (pkg.devDependencies || {})) {

0 commit comments

Comments
 (0)