2.0.0-rc.0 • Published 1 month ago

@vuepress/plugin-palette v2.0.0-rc.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

vuepress-next

github check github docs npm license

Status: Alpha

The codebase has been completely refactored with TypeScript. Some major changes:

  • Fully migrated to Vue 3
  • Extract @vuepress/cli from vuepress package
  • Extract @vuepress/client from @vuepress/core package
  • Extract @vuepress/bundler-webpack from @vuepress/core package and migrate to webpack 5
    • As webpack is decoupled with core, other bundlers are also possible to be supported
  • Extract @vuepress/plugin-palette from @vuepress/core package - stylus is no longer the default CSS pre-processor, and the way of styles customization should be determined by theme

The documentation has not finished yet. For now you can check out the breaking changes list below as migration reference.

Documentation

https://vuepress.github.io

Contribution

See Contributing Guide.

Breaking Changes

Temporarily record some breaking changes here.

Core

User config

  • shouldPrefetch -> the default value is changed to false
  • patterns -> pagePatterns
  • extraWatchFiles -> removed, watch files manually in onWatched hook
  • evergreen -> the default value is changed to true
  • markdown
    • markdown.lineNumbers -> markdown.code.lineNumbers, and the default value is changed to true
    • markdown.slugify -> removed
    • markdown.pageSuffix -> removed
    • markdown.externalLinks -> markdown.links.externalAttrs
    • markdown.toc -> changed
    • markdown.plugins -> removed
    • markdown.extendMarkdown -> removed
    • markdown.extractHeaders -> changed
  • All webpack related configs are moved to bundlerConfig (with @vuepress/bundler-webpack)
    • postcss -> bundlerConfig.postcss
    • stylus -> bundlerConfig.stylus
    • scss -> bundlerConfig.scss
    • sass -> bundlerConfig.sass
    • less -> bundlerConfig.less
    • chainWebpack -> bundlerConfig.chainWebpack
    • configureWebpack -> bundlerConfig.configureWebpack

Conventional files and directories

  • .vuepress/enhanceApp.js -> .vuepress/clientAppEnhance.{js,ts}
  • .vuepress/components -> will not auto register components, and you need to register your components manually in .vuepress/clientAppEnhance.{js,ts}

Permalink patterns

  • :i_month -> removed
  • :i_day -> removed
  • :minutes -> removed (undocumented in 1.0)
  • :seconds -> removed (undocumented in 1.0)
  • :regular -> :raw

Stylus Palette system

The stylus palette system of Vuepress 1.0 (i.e. styles/palette.styl and styles/index.styl) will only work in default theme.

To make the palette system reusable, it's extracted to @vuepress/plugin-palette.

Theme authors can use their own way for users to configure styles (not be limited with stylus as VuePress 1.0).

Frontmatter

  • meta -> head, which uses the same type with siteConfig.head

    For example:

    head:
      - - meta
        - name: foo
          content: bar
      - - link
        - rel: canonical
          href: foobar
      - - script
        - {}
        - console.log('hello from frontmatter');

    Has the same structure with:

    // .vuepress/config.js
    module.exports = {
      // ...
      head: [
        ['meta', { name: 'foo', content: 'bar' }],
        ['link', { rel: 'canonical', href: 'foobar' }],
        ['script', {}, `console.log('hello from frontmatter');`],
      ],
      // ...
    }

Plugin API

  • ready -> onPrepared
  • updated -> onWatched
  • generated -> onGenerated
  • additionalPages -> removed, use app.pages.push(createPage()) in onInitialized hook
  • clientDynamicModules -> removed, use app.writeTemp() in onPrepared hook
  • enhanceAppFiles -> clientAppEnhanceFiles
  • globalUIComponents -> clientAppRootComponentFiles
  • clientRootMixin -> clientAppSetupFiles
  • extendMarkdown -> extendsMarkdown
  • chainMarkdown -> removed
  • extendPageData -> extendsPageData
  • extendsCli -> removed
  • configureWebpack -> removed
  • chainWebpack -> removed
  • beforeDevServer -> removed
  • afterDevServer -> removed

Theme API

  • .vuepress/theme -> won't be used as theme implicitly if the path exists, and set the path explicitly via theme option.

  • extend -> extends

    You can still inherit a parent theme with extends: 'parent-theme', which will extends the plugins, layouts, etc.

    However, the @theme and @parent-theme aliases are not available now.

CLI

  • eject command -> removed
  • -c, --cache [cache] -> --cache <cache> - the shorthand -c is not for cache option, and the value of cache option is not optional
  • --no-cache -> --clean-cache

Default Theme

  • <CodeGroup />, <CodeBlock /> -> <CodeGroup />, <CodeGroupItem />
  • <Badge />
    • $badgeErrorColor -> $badgeDangerColor
    • type prop only accepts tip, warning and danger
  • Default theme config has changed a lot. Please checkout the types definition and our docs/.vuepress/config.ts as reference
2.0.0-rc.21

1 month ago

2.0.0-rc.15

2 months ago

2.0.0-rc.14

3 months ago

2.0.0-rc.12

3 months ago

2.0.0-rc.11

3 months ago

2.0.0-rc.10

3 months ago

2.0.0-rc.7

3 months ago

2.0.0-rc.3

3 months ago

2.0.0-rc.1

3 months ago

2.0.0-beta.66

10 months ago

2.0.0-beta.65

10 months ago

2.0.0-beta.64

10 months ago

2.0.0-beta.68

6 months ago

2.0.0-beta.67

8 months ago

2.0.0-rc.0

6 months ago

2.0.0-beta.63

11 months ago

2.0.0-beta.62

12 months ago

2.0.0-beta.61

1 year ago

2.0.0-beta.60

1 year ago

2.0.0-beta.55

1 year ago

2.0.0-beta.54

1 year ago

2.0.0-beta.53

2 years ago

2.0.0-beta.52

2 years ago

2.0.0-beta.59

1 year ago

2.0.0-beta.58

1 year ago

2.0.0-beta.57

1 year ago

2.0.0-beta.56

1 year ago

2.0.0-beta.51

2 years ago

2.0.0-beta.50

2 years ago

2.0.0-beta.49

2 years ago

2.0.0-beta.48

2 years ago

2.0.0-beta.47

2 years ago

2.0.0-beta.40

2 years ago

2.0.0-beta.44

2 years ago

2.0.0-beta.43

2 years ago

2.0.0-beta.42

2 years ago

2.0.0-beta.41

2 years ago

2.0.0-beta.46

2 years ago

2.0.0-beta.45

2 years ago

2.0.0-beta.38

2 years ago

2.0.0-beta.37

2 years ago

2.0.0-beta.36

2 years ago

2.0.0-beta.29

2 years ago

2.0.0-beta.28

2 years ago

2.0.0-beta.33

2 years ago

2.0.0-beta.32

2 years ago

2.0.0-beta.35

2 years ago

2.0.0-beta.34

2 years ago

2.0.0-beta.27

3 years ago

2.0.0-beta.26

3 years ago

2.0.0-beta.25

3 years ago

2.0.0-beta.24

3 years ago

2.0.0-beta.23

3 years ago

2.0.0-beta.22

3 years ago

2.0.0-beta.21

3 years ago

2.0.0-beta.20

3 years ago

2.0.0-beta.19

3 years ago

2.0.0-beta.15

3 years ago

2.0.0-beta.18

3 years ago

2.0.0-beta.17

3 years ago

2.0.0-beta.9

3 years ago

2.0.0-beta.11

3 years ago

2.0.0-beta.10

3 years ago

2.0.0-beta.14

3 years ago

2.0.0-beta.13

3 years ago

2.0.0-beta.12

3 years ago

2.0.0-beta.8

3 years ago

2.0.0-beta.7

3 years ago

2.0.0-beta.6

3 years ago

2.0.0-beta.5

3 years ago

2.0.0-beta.4

3 years ago

2.0.0-beta.1

3 years ago

2.0.0-beta.0

3 years ago

2.0.0-alpha.26

3 years ago