Using the gulp tasks from the yeoman generated Aurelia app I'm trying to bundle a custom application. When I run gulp bundle
the following error is reported.
Where can I find a log to help track down this file or the reference to this file?
I've seen this from time to time, and it's usually an issue of the config.js
. You'll want to make sure:
github
, npm
, or wherever your text plugin is located is above your '*' line.So, something like 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 all else fails, try deleting your jspm_packages folder, and typing jspm install text
.