-
Notifications
You must be signed in to change notification settings - Fork 494
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
Publish to npm #41
Comments
Great idea! I'm not that familiar with CSS frameworks being in an NPM package, so I'll research how that works. On an unrelated note - thanks for all the help and great ideas you've contributed to Water.css. Do you mind if I make you a collaborator on the repo? This way you'll get cool access to more things (and also get nice badge next to your name iirc). |
Ok, it seems CSS is usually just included like normal in the static markup at |
So, the The package I think it'd be possible to contact NPM and get publish rights to this package - do you think if this is possible |
Personally I prefer |
Yep, I agree, I'm a bigger fan of
Absolutely, thanks for working with me on all the contributions! I'd love to be a collaborator. Thanks! 🎉 |
I suggest the use of https://github.com/sindresorhus/np, great tool for automate the publish process. |
@atilacamurca Yeah, it is a great tool! Although, a lot of what that does we already do, it might not be optimal for this project. I've also had some issues with it in the past. |
I think the simple {
"name": "normalize.css",
"version": "8.0.1",
"description": "A modern alternative to CSS resets",
"main": "normalize.css",
"style": "normalize.css",
"files": [
"LICENSE.md",
"normalize.css"
],
"repository": "necolas/normalize.css",
"license": "MIT",
"bugs": "https://github.com/necolas/normalize.css/issues",
"homepage": "https://necolas.github.io/normalize.css"
}
|
@chinanf-boy Thanks! I made some changes over in #64. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Moving the conversation to #187 |
It might be nice to have water.css published to npm with every release. Then, users can install it using
npm install water.css
and include it in their projects without referencing a CDN.This would mean we would have to update the
package.json
version semantically with every release as well.The text was updated successfully, but these errors were encountered: