vue3-core/packages/compiler-sfc
Evan You 6a0be882d4 feat(compiler-sfc): support transforming absolute asset urls
BREAKING CHANGE: `@vue/compiler-sfc`'s `transformAssetUrlsBase` option
has been removed. It is merged into `trasnformAssetUrls` which now also
accepts the format of

  ```ts
  {
    base?: string
    includeAbsolute?: string
    tags?: { [name: string]: string[] }
  }
  ```
2020-05-04 16:45:19 -04:00
..
__tests__ feat(compiler-sfc): support transforming absolute asset urls 2020-05-04 16:45:19 -04:00
src feat(compiler-sfc): support transforming absolute asset urls 2020-05-04 16:45:19 -04:00
README.md build: add browser builds for @vue/compiler-sfc 2020-04-26 01:24:25 -04:00
api-extractor.json refactor(types): mark internal API exports and exclude from d.ts 2020-04-30 17:04:35 -04:00
package.json release: v3.0.0-beta.8 2020-05-04 10:49:23 -04:00

README.md

@vue/compiler-sfc

Lower level utilities for compiling Vue single file components

This package contains lower level utilities that you can use if you are writing a plugin / transform for a bundler or module system that compiles Vue single file components into JavaScript. It is used in vue-loader.

The API surface is intentionally minimal - the goal is to reuse as much as possible while being as flexible as possible.

Browser Build Usage

This package relies on postcss, postcss-selector-parser and postcss-modules

API

TODO