jvandemo / generator-angular2-library

Yeoman generator to create an Angular library
MIT License
752 stars 122 forks source link

Wrong filenames in src/package.json? #299

Open okonomiyaki3000 opened 6 years ago

okonomiyaki3000 commented 6 years ago

In the template for src/package.json, you have these lines:

  "module": "<%= props.libraryName.kebabCase %>.js",
  "jsnext:main": "<%= props.libraryName.kebabCase %>.js",
  "typings": "<%= props.libraryName.kebabCase %>.d.ts",

but, in the output to dist/, these files are all named index rather than the library name. Or have I misunderstood something?