You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## A Frontvue plugin for Pug boilerplate and processing
6
-
This plugin will be one of the available options to choose from when you configure a new project using Frontvue. It handles Pug files and comes with a boilerplate template of Pug partials. It comes with the following tasks:
7
-
**pug:config* — registers a configuration questionnaire;
8
-
**pug:template* — copies the Pug template;
9
-
**pug:clean* — removes the build folder;
10
-
**pug:process* — handles compiling of Pug partials;
11
-
**pug:watch* — starts listeners for changes in Pug partials;
5
+
## A Frontvue plugin for JavaScript boilerplate and processing
6
+
This plugin will be one of the available options to choose from when you configure a new project using Frontvue. It handles JavaScript ES6 files and comes with a boilerplate template (w.i.p). It comes with the following tasks:
7
+
**js:config* — registers a configuration questionnaire;
8
+
**js:template* — copies the JavaScript ES6 template;
9
+
**js:clean* — removes the build folder;
10
+
**js:process* — handles compiling of JS partials;
11
+
**js:watch* — starts listeners for changes in JS partials;
12
12
13
13
## Default configuration
14
14
```js
15
15
{
16
16
// Source files directory name
17
-
sourceDir:'pug',
17
+
sourceDir:'js',
18
18
19
-
// Directory name where the HTML file(s) will be outputted
20
-
buildDir:'html'
19
+
// Directory name where the JS file(s) will be outputted
0 commit comments