victorgarciaesgi / vue-chart-3

📊 A simple wrapper around Chart.js 3 for Vue 2 & 3

Home Page:https://vue-chart-3.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unexpected token in pascalcase dependency

sQuarecoW opened this issue · comments

Describe the bug

Vue crashes:

Failed to compile.

./node_modules/vue-chart-3/node_modules/pascalcase/index.js 25:42
Module parse failed: Unexpected token (25:42)
You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
| export const pascalcase = (value, options = {}) => {
|   const input = toString(value);
>   const regex = options.punctuationRegex ?? PUNCTUATION;
|   const output = input ? camelcase(regex ? input.replace(regex, ' ') : input, options) : '';
|   return output ? output[0].toLocaleUpperCase(options.locale) + output.slice(1) : '';

Remember, vue-chart-3 is only an adapter to use chart.js with Vue easily. So any chart.js related issue or question will be dismissed

To Reproduce

npm list @vue/runtime-core

`-- vue-chart-3@3.1.1
  +-- @vue/runtime-core@3.2.30
  `-- @vue/runtime-dom@3.2.30
    `-- @vue/runtime-core@3.2.30 deduped

Version of vue-chart-3

v3.1.1

Version of Vue

  • Vue 3
  • Vue 2
  • Nuxt 2
  • Nuxt 3

Hey! Sorry it was a mistake to update it in the previous build, should be fixed on 3.1.2!

Tnx for the quick reply and solution!