1.1.0 • Published 4 years ago

vue-cli-launcher v1.1.0

Weekly downloads
30
License
MIT
Repository
github
Last release
4 years ago

vue-cli-launcher

🚀 Vue CLI with extra options

Installation

Requires @vue/cli-service to be installed.

npm install vue-cli-launcher --save-dev

Usage

Accepts exactly the same arguments as @vue/cli-service plus additional options.

vue-cli-launcher serve --open --package-json-path=application/package.json

Bazel

As the original motivation for creating this package was to tackle issues outlined in bazelbuild/rules_nodejs#1776 and vuejs/vue-cli#3152, here is an example of corresponding Bazel targets.

load("@npm//vue-cli-launcher:index.bzl", "vue_cli_launcher")

vue_cli_launcher(
  name = "serve",
  args = [
    "serve",
    "--package-json-path=$(rootpath package.json)",
  ],
  data = [
    "package.json",
    ...
  ],
)

vue_cli_launcher(
  name = "build",
  args = [
    "build",
    "--dest=$(@D)",
    "--resolve-dest-by-cwd",
    "--package-json-path=$(execpath package.json)",
  ],
  data = [
    "package.json",
    ...
  ],
  output_dir = True,
)

Options

--package-json-path    Path to package.json of the project. Can be either absolute
                       or relative to the current directory.
--resolve-dest-by-cwd  Base `--dest` resolution on the current directory rather than
                       on the directory containing package.json of the project.
1.1.0

4 years ago

1.0.2

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago