Haixing-Hu / vue-i18n

Internationalization plugin of Vue.js
MIT License
62 stars 9 forks source link

The "main" definition in "package.json" is broken #4

Closed swernerx closed 8 years ago

swernerx commented 8 years ago

The main block should contain a single module ID, not an array. Therefor it is not installable via jspm right now.

Current code:

  "main": [
    "src/vue-i18n.js"
  ],

Fixed code:

  "main": "src/vue-i18n.js",

Thanks for fixing!

Haixing-Hu commented 8 years ago

The pull request has been merged. Thank you.