Skip to content

Releases: vuejs/vue-cli

v3.0.0-alpha.10

12 Feb 22:12
Compare
Choose a tag to compare
v3.0.0-alpha.10 Pre-release
Pre-release

Bug Fixes

  • fix pwa info link (close #801) (a0004ea)
  • vue-class-component and vue-property-decorators should be dependencies (c26559d)

Features

  • include eslint:recommended in prettier config (e261718)
  • support using ESLint to lint TypeScript (dd04add)

v3.0.0-alpha.9

06 Feb 22:51
Compare
Choose a tag to compare
v3.0.0-alpha.9 Pre-release
Pre-release

Bug Fixes

  • unit-mocha: fix test glob to avoid running e2e tests (172e8eb), closes #790
  • handle vue invoke config merging for existing files (46166fb), closes #788
  • object returned from api.configureWebpack should be merged (920d8fa)
  • only support taobao check and inline registry when using npm (67df3eb), closes #789

Features

  • Use the Workbox webpack plugin in pwa template (#769) (9095483)

v2.9.3

05 Feb 03:37
Compare
Choose a tag to compare

Bug Fixes

  • Fix private repository cloning issue on Windows.

v3.0.0-alpha.8

04 Feb 15:58
Compare
Choose a tag to compare
v3.0.0-alpha.8 Pre-release
Pre-release

Bug Fixes

  • fix eslint errors when using airbnb + cypress (313533d)
  • fix jest test match (2c61d23), closes #771
  • fix overwrite prompt (7871c5c)
  • include version marker in workspace (d3d040a), closes #772
  • inspect: correct usage of resolve (#773) (0f9a44a)
  • move plugin data extraction into GeneratorAPI (4f2f6f0)
  • shim global for node modules (691cfa2), closes #774

Features

  • build --target wc-async (50fdd9b)
  • polish build output (dc29e88)
  • update default component content (59f5913)

v3.0.0-alpha.7

02 Feb 22:44
Compare
Choose a tag to compare
v3.0.0-alpha.7 Pre-release
Pre-release

Bug Fixes

  • ensure vue init works when installed with npm (6ce8565)

Features

  • check and show newer version on create (3df1289)
  • support prompts when invoking plugins (c1142e2)

v3.0.0-alpha.6

02 Feb 09:02
Compare
Choose a tag to compare
v3.0.0-alpha.6 Pre-release
Pre-release

New Features

  • vue build and vue-cli-service build now support --target lib | wc | multi-wc, which builds given component(s) as a library, web component, or a multi web component bundle.

  • New command: vue inspect allows you to inspect the webpack config in a project with vue-cli-service.

  • Babel and TS loaders are now handled with thread-loader by default when the machine has more than 1 CPU cores.

Bug Fixes

See changelog.

v3.0.0-alpha.5

29 Jan 17:34
Compare
Choose a tag to compare
v3.0.0-alpha.5 Pre-release
Pre-release

Changes

  • Now allows saving manual selected features as multiple named presets, instead of only one saved config.
  • Now support choosing whether to keep tool configs in package.json or in dedicated rc files.
  • Now loads project config with cosmiconfig, so the project config can now be (in order of load priority):
    • vue field in package.json
    • .vuerc (JSON or YAML)
    • vue.config.js

Fixed

#740
#743

v3.0.0-alpha.4

27 Jan 03:15
Compare
Choose a tag to compare
v3.0.0-alpha.4 Pre-release
Pre-release

This release is ready for testing and feedback.

npm install -g @vue/cli
vue create my-project

v2.8.0

18 Jan 15:45
Compare
Choose a tag to compare

New Feature

  • vue build command: instantly build a Vue app or component with zero config. Thanks to the hard work by @egoist ! docs

v2.7.0

02 Jan 20:03
Compare
Choose a tag to compare
  • skipInterpolation option in the meta files now support an array of glob strings (@posva)