peopledoc / eslint-config-peopledoc

ESLint config for PeopleDoc frontend projects
MIT License
1 stars 1 forks source link

Missing es5 config when installing 1.2.0 #30

Closed edouard-lopez closed 6 years ago

edouard-lopez commented 6 years ago

After installing 1.2.0 I don't have the es5 config

$ npm install --save-dev peopledoc/eslint-config-peopledoc#1.2.0

The package version is the right one:

$ grep version node_modules/eslint-config-peopledoc/package.json
  "version": "1.2.0"
edouard-lopez commented 6 years ago

This is because we forget to add es5.js to files property in the package.json file. It should be:

  "files": [
    "core.js",
    "ember.js",
+    "es5.js",
    "index.js"
  ]

I will release a new version 1.2.1