0

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.

enter image description here

Where can I find a log to help track down this file or the reference to this file?

Ashley Grant
  • 10,879
  • 24
  • 36
Naeem Sarfraz
  • 7,360
  • 5
  • 37
  • 63

1 Answers1

2

Double check your config.js

I've seen this from time to time, and it's usually an issue of the config.js. You'll want to make sure:

  1. The github, npm, or wherever your text plugin is located is above your '*' line.
  2. The text plugin is mapped.
  3. The plugin files are located where (1) and (2) are pointing.

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.

Matthew James Davis
  • 12,134
  • 7
  • 61
  • 90
  • I think you're on to the right answer but this (http://stackoverflow.com/questions/38679171/unauthorized-response-for-github-api-for-jspm-install) is preventing me from proceeding – Naeem Sarfraz Jul 30 '16 at 22:47
  • 1
    I've added this plugin manually and can now bundle. Thanks for your help. I still have the issue with the github credentials mentioned in the previous comment so I'll mark this one as answered. – Naeem Sarfraz Jul 31 '16 at 16:41
  • I don't see the question, but have you tried this: http://stackoverflow.com/questions/30995040/jspm-saying-github-rate-limit-reached-how-to-fix – Matthew James Davis Aug 02 '16 at 00:43
  • I deleted the question as I managed to get it working, thanks for the link – Naeem Sarfraz Aug 02 '16 at 08:54