Simple vue 3
package development project example template.
.
├── README.md
├── lerna.json
├── package.json
├── packages # The directory where the package is placed
│ ├── base # 📦 package @vue-monorepo-template/base
│ │ ├── cjs # 🔄 Compiled cjs directory
│ │ ├── esm # 🔄 Compiled esm directory
│ │ ├── package.json
│ │ ├── src # Package source directory
│ │ └── tsconfig.json
│ └── simple # 📦 package @vue-monorepo-template/simple
├── tsconfig.json
└── website # 🐝 Package example test, website
├── README.md
├── babel.config.js
├── package.json
├── public
├── src
└── vue.config.js
- Install
npm install
- Dependencies in the installation package and example
npm run bootstrap
- Compile the code in the package
npm run build # Compile all packages 📦 code
npm run watch:simple # Real-time compilation 📦 @vue-monorepo-template/simple
npm run watch:base # Real-time compilation 📦 @vue-monorepo-template/base
- Start the
website
example website
npm run start
Licensed under the MIT License.