0.0.5 • Published 1 year ago

@padcom/create-vue-app v0.0.5

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
1 year ago

Vue.js 3.x application generator

This generator creates a project that has vue, tailwindcss+nesting, pinia, router, typescript, eslint and vitest configured.

Usage

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

Then issue the following command:

$ npm create @padcom/vue-app

Which will create the following elements:

start.ts

This is the main application entry point. It can be invoked either directly or by calling npm start

example.test.ts

This is an example vitest 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 configuration and documentation

Default scripts

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

start (alias for dev)

dev

Starts the application by running

$ npm run dev

build

Build the project. All assets are then stored in dist folder which is ignored by git by configuration.

preview

Builds the projects and waits for changes, then rebuild.

test:watch

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.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago