🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

vue-multiple-cli

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-multiple-cli - npm Package Compare versions

Comparing version
0.0.2
to
0.0.3
+1
-1
package.json
{
"name": "vue-multiple-cli",
"version": "0.0.2",
"version": "0.0.3",
"description": "create a multiple page app with vue",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -14,2 +14,4 @@ # a simple cli for vue multiple page app

$ vum create my-project
$ cd my-project
$ npm start or yarn start
```

@@ -38,2 +40,3 @@

module.exports={
//if you want to run all pages,you should set: page:'*'
page:['example'],

@@ -61,1 +64,23 @@ port:3000,

```
## postcss.config.js
you can create a postcss.config.js to add new postcss plugins
```javascript
//postcss.config.js
module.exports=function(defaultPostcssPlugin,NODE_ENV){
return [
//you postcss plugins
]
}
```
## babel.config.js
you can create a babel.config.js to merge the default babel config
```javascript
//babel.config.js
module.exports=function(defaultBabelConfig){
return {
//you babel options
}
}
```