Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: Ability to support JSPM #26

Open
Botong opened this issue Mar 25, 2016 · 2 comments
Open

Feature Request: Ability to support JSPM #26

Botong opened this issue Mar 25, 2016 · 2 comments

Comments

@Botong
Copy link

Botong commented Mar 25, 2016

Hi
Thanks for providing this great extension for atom, I really love using it by far.
Just have a feature request, would it be possible to support module autocomplete for JSPM?

Thanks

@nkt
Copy link
Owner

nkt commented Mar 25, 2016

Hm, I'm not familiar with jspm, what I should do to support it?

@Botong
Copy link
Author

Botong commented Mar 25, 2016

thanks for replying, I was reading through your code and found that you
have supported webpack by specifying a lookup logic. I would assume to
support JSPM it is similar to it. All jspm installed packages are also
recorded in the package.json file, with a prefix starting with jspm by
default. The actual packages are stored in jspm package folder where the
lookup logic should probably happen.
{
"name": "myapp",
"version": "1.0.0",
"description": "",
"scripts": {
"test": ""
},
"author": "XXX",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^5.0.0",
"eslint": "^2.4.0",
"eslint-plugin-react": "^4.2.3",
"jspm": "^0.16.31",
"watch": "^0.17.1"
},
"jspm": {
"directories": {
"baseURL": "app"
},
"dependencies": {
"classnames": "npm:classnames@^2.2.3",
"flux": "npm:flux@^2.1.1",
"jquery": "npm:jquery@^2.2.2",
"keymirror": "npm:keymirror@^0.1.1",
"object-assign": "npm:object-assign@^4.0.1",
"react": "npm:react@^0.14.7",
"react-dom": "npm:react-dom@^0.14.7"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4"
}
}
}

2016-03-25 23:38 GMT+08:00 Nikita Gusakov [email protected]:

Hm, I'm not familiar with jspm, what I should do to support it?


You are receiving this because you authored the thread.
Reply to this email directly or view it on GitHub
#26 (comment)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants