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
atom本身是基于node开发的,所以他制作插件会比sublime方便很多。�而且安装发布都是居于apm(类似于npm),使用命令行都可以搞定。
移植了几个postcss插件到atom,有时间一一移植过去。
插件都是居于atom-autoprefixer制作,只要稍微改下依赖就行了。
制作好的插件提交到github,然后在命令行输入
apm publish patch
apm publish minor
apm publish major
关于版本号可以看这篇文章:http://semver.org/lang/zh-CN/
然后命令行会帮你提交tag到github,并且提交到https://atom.io/packages/供别人下载,非常方便,全部自动化。不像sublime还要审核,tag也要自己建。
在命令行输入apm install plugn-name就可以安装插件了。
apm install plugn-name
使用快捷键cmd+shift+p,输入插件名,插件就能生效了。
cmd+shift+p
atom挺好用的,而且是开源的项目,有赶超sublime的趋势,以后编辑器会慢慢该用atom。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
简介
atom本身是基于node开发的,所以他制作插件会比sublime方便很多。�而且安装发布都是居于apm(类似于npm),使用命令行都可以搞定。
制作
移植了几个postcss插件到atom,有时间一一移植过去。
插件都是居于atom-autoprefixer制作,只要稍微改下依赖就行了。
发布
制作好的插件提交到github,然后在命令行输入
apm publish patch
提交一个修订号,比如0.0.1 当你做了向下兼容的问题修正apm publish minor
提交一个次版本号,比如0.1.0 当你做了向下兼容的功能性新增apm publish major
提交一个主版本号,比如1.0.0 当你做了不兼容的 API 修改关于版本号可以看这篇文章:http://semver.org/lang/zh-CN/
然后命令行会帮你提交tag到github,并且提交到https://atom.io/packages/供别人下载,非常方便,全部自动化。不像sublime还要审核,tag也要自己建。
安装
在命令行输入
apm install plugn-name
就可以安装插件了。使用
使用快捷键
cmd+shift+p
,输入插件名,插件就能生效了。atom挺好用的,而且是开源的项目,有赶超sublime的趋势,以后编辑器会慢慢该用atom。
The text was updated successfully, but these errors were encountered: