Coder Social home page Coder Social logo

Comments (5)

mpetkov avatar mpetkov commented on June 12, 2024

Looks like you have to add a path to your system config so that it loads from correct folder. You can do it one of 2 ways:

If you want to add this change only for this module:
System.config({
"defaultJSExtensions": true,
"paths": {
"app": "/app",
"angular2/": "/angular2/",
"rxjs/": "/rxjs/",
"ng2-select": "/node_modules/ng2-select/ng2-select"
},
"packages": {
"angular2": {
"defaultExtension": false
},
"rxjs": {
"defaultExtension": false
}
}

If you want to add this change for all node_modules which is preferred way:
System.config({
"defaultJSExtensions": true,
"paths": {
"app": "/app",
"angular2/": "/angular2/",
"rxjs/": "/rxjs/",
"": "/node_modules/"
},
"packages": {
"angular2": {
"defaultExtension": false
},
"rxjs": {
"defaultExtension": false
}
}

from ng2-select.

bissolli avatar bissolli commented on June 12, 2024

Same problem here =/

from ng2-select.

synapze avatar synapze commented on June 12, 2024

Similar problem here.. My config looks like this...

System.config({
map: {
rxjs: 'node_modules/rxjs',
'ng2-bootstrap':'node_modules/ng2-bootstrap',
'ng2-select': 'node_modules/ng2-select',
moment: 'node_modules/moment/moment.js'
},
packages: {
app: {
format: 'register',
defaultExtension: 'js'
},
rxjs: {
defaultExtension: 'js'
},
'ng2-bootstrap': {
defaultExtension: 'js'
},
'ng2-select': {
defaultExtension: 'js'
}
}
});

but i still get /angular2 dependency missing error.
system.src.js:1154 GET http://localhost:3000/angular2/angular2 404 (Not Found)

I could keep mapping a reference to the missing dependencies but that doesn't seem right.

from ng2-select.

synapze avatar synapze commented on June 12, 2024

Found the problem..
The following files have the incorrect reference to angular2.

/node_modules/ng2-select/components/select/select-pipes.ts
node_modules/ng2-select/components/select/select.ts

it should be {} from 'angular2/core'; instead of {} from 'angular2/angular2';

from ng2-select.

cherrydev avatar cherrydev commented on June 12, 2024

And now, btw, should be @angular/core

from ng2-select.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.