Skip to content

Commit b7e30d3

Browse files
committed
Prepared for publishing
1 parent 932a1ea commit b7e30d3

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

docs/development.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,24 @@ During development you may want to reset the whole plugin. It is available via c
4141
In order to use this command open command panel in Atom (`Ctrl` + `Shift` + `P`) and find
4242
command titled as `Deepcode: Reset Plugin`.
4343

44-
##Testing
44+
## Testing
4545

4646
In order to run tests open plugin folder in `Atom` and use menu command
4747
`View` -> `Developer` -> `Run Package Specs`
4848
or just press `Ctrl` + `Shift` + `Y`.
49+
50+
## Publishing
51+
52+
In order to publish package to the [atom.io package registry](https://atom.io/packages)
53+
you may use the `apm publish` command:
54+
```shell script
55+
$ cd atom-plugin
56+
$ apm publish <version-type>
57+
58+
# where <version-type> is one of:
59+
# - patch
60+
# - minor
61+
# - major
62+
```
63+
64+
To read more about publishing visit [official docs page](https://flight-manual.atom.io/hacking-atom/sections/publishing/).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deepcode",
33
"main": "./lib/deepcode",
4-
"version": "0.0.1",
4+
"version": "0.0.0",
55
"description": "Detect bugs and quality issues in JavaScript, TypeScript, React, Vue and more...",
66
"keywords": [
77
"code analysis",

0 commit comments

Comments
 (0)