aurelia - Bundling looking for text.js in dist directory -
using gulp tasks yeoman generated aurelia app i'm trying bundle custom application. when run gulp bundle
following error reported.
where can find log track down file or reference file?
double check config.js
i've seen time time, , it's issue of config.js
. you'll want make sure:
- the
github
,npm
, or wherever text plugin located above '*' line. - the text plugin mapped.
- the plugin files located (1) , (2) pointing.
so, this:
config.js
paths: { "github:*": "jspm_packages/github/*", "npm:*": "jspm_packages/npm/*", "*": "dist/*" }, map: { "text": "github:systemjs/plugin-text@0.0.4" }
and jspm_packages/github/systemjs/plugin-text@0.0.4
exists.
if else fails, try deleting jspm_packages folder, , typing jspm install text
.
Comments
Post a Comment