We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Add basic package info to package.json, this could be done with npm init.
npm init
Let's use mayor version 0, until the public api settles down. (NPM init defaults to 1.0.0) More info:
Major version zero (0.y.z) is for initial development. Anything may change at any time. The public API should not be considered stable.
From: http://semver.org/
The text was updated successfully, but these errors were encountered:
I'm personally confused about the name property and what JSPM expects see: jspm/jspm-cli#249 (comment)
name
To allow publishing to NPM it recommends adding a format option to package.json, See: Configuring Packages for jspm:npm. But I'm not sure whether we should use esm or es6, see: systemjs/systemjs#617
format
esm
es6
We probably also want to add a directories.lib config.
directories.lib
Sorry, something went wrong.
I did a quick directories.lib test and this doesn't seem to give any issues.
No branches or pull requests
Add basic package info to package.json, this could be done with
npm init
.Let's use mayor version 0, until the public api settles down. (NPM init defaults to 1.0.0) More info:
From: http://semver.org/
The text was updated successfully, but these errors were encountered: