tochoromero / aurelia-table

Simple functional data table for Aurelia
https://tochoromero.github.com/aurelia-table
MIT License
67 stars 25 forks source link

Unable to install via webpack #15

Closed evenflow58 closed 8 years ago

evenflow58 commented 8 years ago

The package is missing all the au-*.js files

evenflow58 commented 8 years ago

Another way to resolve this problem for webpack users is to add the following to the package.json file to force aurelia build to add in the required files. "aurelia": { "build": { "resources": [ "aurelia-table/au-table", "aurelia-table/au-table-pagination", "aurelia-table/au-table-select", "aurelia-table/au-table-sort" ] } },

joshua1 commented 7 years ago

I have added this bit to my package.json , added

 .plugin('aurelia-table')
    .feature('resources');

to main.js, Still i get the error cannot find module 'aurelia-table' I am using the webpack skeleton starter project. does the reference to aurelia-table/... represent a folder in the source?