# tools **Repository Path**: mirrors_vueComponent/tools ## Basic Information - **Project Name**: tools - **Description**: Tools For Vue Component - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-26 - **Last Updated**: 2026-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vc-tools offline tools for vue component [![NPM version][npm-image]][npm-url] [![gemnasium deps][gemnasium-image]][gemnasium-url] [![node version][node-image]][node-url] [![npm download][download-image]][download-url] [npm-image]: http://img.shields.io/npm/v/vc-tools.svg?style=flat-square [npm-url]: http://npmjs.org/package/vc-tools [travis-image]: https://img.shields.io/travis/react-component/vc-tools.svg?style=flat-square [travis-url]: https://travis-ci.org/react-component/vc-tools [coveralls-image]: https://img.shields.io/coveralls/react-component/vc-tools.svg?style=flat-square [coveralls-url]: https://coveralls.io/r/react-component/vc-tools?branch=master [gemnasium-image]: http://img.shields.io/gemnasium/react-component/vc-tools.svg?style=flat-square [gemnasium-url]: https://gemnasium.com/react-component/vc-tools [node-image]: https://img.shields.io/badge/node.js-%3E=_0.11-green.svg?style=flat-square [node-url]: http://nodejs.org/download/ [download-image]: https://img.shields.io/npm/dm/vc-tools.svg?style=flat-square [download-url]: https://npmjs.org/package/vc-tools ## Usage ``` $ vc-tools run lint: run lint by https://github.com/vuejs/eslint-plugin-vue-libs $ vc-tools run pub: compile and npm publish $ vc-tools run watch --out-dir=/xx: watch and compile to /xx, default to lib $ vc-tools run build: build examples $ vc-tools run gh-pages: push example to gh-pages $ vc-tools run start: start dev server ``` package.json demo ```json { "config": { // show access log in console "accesslog": true, // dev server port "port": 9528, // webpack entry for build dist umd "entry": { "my-project": [ "./src/index.ts" ] }, "parallel": ["es", "js", "css"], // webpack output for build dist umd "output": {}, // webpack css loader options "css": { "loaderOptions": { "less": { "options": { "javascriptEnabled": true } }, "css": { "options": { "sourceMap": true } } } } } } ```