@rdfrontier/plugin-mobile
v1.0.0-beta.0
Published
<div align="left"> <br/> <a href="https://www.realdecoy.com/jamaica/" title="REALDECOY"> <img width=400px src="https://www.realdecoy.com/wp-content/uploads/2019/02/Realdecoy-logo-transparent.png" alt="rd logo"> </a> <br/> </div>
Downloads
2
Readme
RDVue Mobile
RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models, and a data-layer design promoting unified consumption through Stores and Services.
Table of Contents
Usage
npx rdvue [command]
The help menu can be accessed with the command:
npx rdvue --help
The current version of rdvue can be retrieved with the command:
npx rdvue -v|--version|version
Options
Usage:
npx rdvue <action>
Actions:
create-project - Scaffold a new rdvue project
add - Add a feature to a project
plugin - Inject a utility to extend project functionality
upgrade - Specify the rdvue template version for a project
Options:
--help | -h - Show help information
About
The RDVue CLI is the product of RealDecoy's Frontend Practice group. Contributions are welcome! You can help us by reporting or fixing bugs and giving us feedback on new/existing features.
Development
npm install
npm link
Testing
Run Unit Test Suite
npm run test
Creating Tests
- create a
<module-name>.test.ts
file in the/test
folder - using
chai
assertion syntax, describe your unit test cases - visit the oclif testing documentation to see more details