JSPM OR Webpack AND Version
0.17.0-beta.47 (Using loader versions: systemjs@0.20.19)
Browser:
all
Language:
TypeScript 2.4
Current behavior:
The browser does not request the app-bundle.js defined in 'build/bundjes.js'.
Expected/desired behavior:
The browser requests app-bundle.js instead of the individual files.
Description
After updating the typescript skeleton app to jspm 0.17, the app bundle is no longer requested. It seems the wildcard paths are no longer supported and the prefix 'dist/' has to be added in the bundles jspm config.
To reproduce, please check this repo, it contains a bit more info.
I'm not sure if the issue lies with jspm or aurelia-bundler but it seems that aurelia-bundler is writing the bundles config. There might be some config option to add the prefix but didn't found any.
Another thing I had to do, was change <body aurelia-app="main"> to <body aurelia-app="dist/main"> in index.html. Might be relevant.
I'm submitting a bug report
Please tell us about your environment:
Operating System: Ubuntu 17.10
Node Version: 8.7.0
NPM Version: 5.4.2
JSPM OR Webpack AND Version 0.17.0-beta.47 (Using loader versions: systemjs@0.20.19)
Browser: all
Language: TypeScript 2.4
Current behavior: The browser does not request the app-bundle.js defined in 'build/bundjes.js'.
Expected/desired behavior: The browser requests app-bundle.js instead of the individual files.
Description
After updating the typescript skeleton app to jspm 0.17, the app bundle is no longer requested. It seems the wildcard paths are no longer supported and the prefix 'dist/' has to be added in the bundles jspm config.
To reproduce, please check this repo, it contains a bit more info.
I'm not sure if the issue lies with jspm or aurelia-bundler but it seems that aurelia-bundler is writing the bundles config. There might be some config option to add the prefix but didn't found any.
Another thing I had to do, was change
<body aurelia-app="main">
to<body aurelia-app="dist/main">
in index.html. Might be relevant.