I have installed Jimp via jspm in my aurelia app without problems. In my viewModel/class I import Jimp. When I run gulp watch and check the browser console, I got following error:
GET //localhost:9000/jspm_packages/npm/[email protected]/ 404 (Not Found)
I think uitl is a dependency from jimp, but why is this not found?
My config.js:
System.config({
defaultJSExtensions: true,
transpiler: "babel",
babelOptions: {
"optional": [
"es7.decorators",
"es7.classProperties"
]
},
paths: {
"*": "dist/*",
"github:*": "jspm_packages/github/*",
"npm:*": "jspm_packages/npm/*"
}, map {...
"github:jspm/[email protected]": {
"util": "npm:[email protected]"
},....
"npm:[email protected]": {
"util": "npm:[email protected]"
},...
"npm:[email protected]": {
"inherits": "npm:[email protected]",
"process": "github:jspm/[email protected]"
},...
}
util
again. – qtuan