0.1.2 • Published 2 years ago

@padcom/create-vue2-lib v0.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Vue.js 2.x library generator

This generator creates a library project that has Vue 2.x, typescript, eslint and jest configured

Usage

To use this generator you need to have nvm and node.js installed through nvm.

Then issue the following command:

$ npm init @padcom/vue2-lib

Which will create the following elements:

lib/example.test.ts

This is an example Jest test written in TypeScript

lib/components/Hello.test.ts

This is an example Jest test written in TypeScript

package.json

Project configuration file.

.gitignore

Default list of ignored files

.nvmrc

Contains version of node used when initializing the project

tsconfig.json

Default TypeScript documentation

Default scripts

The following list describes the default NPM scripts that can be used with the project

start

Starts the application by running

$ npm start

test

Executes all tests in the project

test:watch

Executes tests that have been changed since the last commit.

lint

You can run linter on your project with the following command:

$ npm run lint

lint:fix

You can fix all auto-fixable linter problems by issuing the following command:

$ npm run lint:fix

TypeScript

All files in the project can use TypeScript (both logic and tests)

Tests

Tests are executed using Jest runner

0.1.0

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago