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.

enter image description here

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:

  1. the github, npm, or wherever text plugin located above '*' line.
  2. the text plugin mapped.
  3. 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

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -