sentry 0.1.2 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE.md ADDED
@@ -0,0 +1,105 @@
1
+ # Functional Source License, Version 1.1, Apache 2.0 Future License
2
+
3
+ ## Abbreviation
4
+
5
+ FSL-1.1-Apache-2.0
6
+
7
+ ## Notice
8
+
9
+ Copyright 2025 Functional Software, Inc. dba Sentry
10
+
11
+ ## Terms and Conditions
12
+
13
+ ### Licensor ("We")
14
+
15
+ The party offering the Software under these Terms and Conditions.
16
+
17
+ ### The Software
18
+
19
+ The "Software" is each version of the software that we make available under
20
+ these Terms and Conditions, as indicated by our inclusion of these Terms and
21
+ Conditions with the Software.
22
+
23
+ ### License Grant
24
+
25
+ Subject to your compliance with this License Grant and the Patents,
26
+ Redistribution and Trademark clauses below, we hereby grant you the right to
27
+ use, copy, modify, create derivative works, publicly perform, publicly display
28
+ and redistribute the Software for any Permitted Purpose identified below.
29
+
30
+ ### Permitted Purpose
31
+
32
+ A Permitted Purpose is any purpose other than a Competing Use. A Competing Use
33
+ means making the Software available to others in a commercial product or
34
+ service that:
35
+
36
+ 1. substitutes for the Software;
37
+
38
+ 2. substitutes for any other product or service we offer using the Software
39
+ that exists as of the date we make the Software available; or
40
+
41
+ 3. offers the same or substantially similar functionality as the Software.
42
+
43
+ Permitted Purposes specifically include using the Software:
44
+
45
+ 1. for your internal use and access;
46
+
47
+ 2. for non-commercial education;
48
+
49
+ 3. for non-commercial research; and
50
+
51
+ 4. in connection with professional services that you provide to a licensee
52
+ using the Software in accordance with these Terms and Conditions.
53
+
54
+ ### Patents
55
+
56
+ To the extent your use for a Permitted Purpose would necessarily infringe our
57
+ patents, the license grant above includes a license under our patents. If you
58
+ make a claim against any party that the Software infringes or contributes to
59
+ the infringement of any patent, then your patent license to the Software ends
60
+ immediately.
61
+
62
+ ### Redistribution
63
+
64
+ The Terms and Conditions apply to all copies, modifications and derivatives of
65
+ the Software.
66
+
67
+ If you redistribute any copies, modifications or derivatives of the Software,
68
+ you must include a copy of or a link to these Terms and Conditions and not
69
+ remove any copyright notices provided in or with the Software.
70
+
71
+ ### Disclaimer
72
+
73
+ THE SOFTWARE IS PROVIDED "AS IS" AND WITHOUT WARRANTIES OF ANY KIND, EXPRESS OR
74
+ IMPLIED, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR
75
+ PURPOSE, MERCHANTABILITY, TITLE OR NON-INFRINGEMENT.
76
+
77
+ IN NO EVENT WILL WE HAVE ANY LIABILITY TO YOU ARISING OUT OF OR RELATED TO THE
78
+ SOFTWARE, INCLUDING INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES,
79
+ EVEN IF WE HAVE BEEN INFORMED OF THEIR POSSIBILITY IN ADVANCE.
80
+
81
+ ### Trademarks
82
+
83
+ Except for displaying the License Details and identifying us as the origin of
84
+ the Software, you have no right under these Terms and Conditions to use our
85
+ trademarks, trade names, service marks or product names.
86
+
87
+ ## Grant of Future License
88
+
89
+ We hereby irrevocably grant you an additional license to use the Software under
90
+ the Apache License, Version 2.0 that is effective on the second anniversary of
91
+ the date we make the Software available. On or after that date, you may use the
92
+ Software under the Apache License, Version 2.0, in which case the following
93
+ will apply:
94
+
95
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
96
+ this file except in compliance with the License.
97
+
98
+ You may obtain a copy of the License at
99
+
100
+ http://www.apache.org/licenses/LICENSE-2.0
101
+
102
+ Unless required by applicable law or agreed to in writing, software distributed
103
+ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
104
+ CONDITIONS OF ANY KIND, either express or implied. See the License for the
105
+ specific language governing permissions and limitations under the License.
package/README.md CHANGED
@@ -1,82 +1,74 @@
1
- # Sentry
1
+ # sentry
2
2
 
3
- Sentry is a simple node tool to watch for file changes (using a path, wildcards, or regexes) and execute a function or shell command. It's like a [watchr](https://github.com/mynyml/watchr) or [guard](https://github.com/guard/guard) for node.
3
+ A gh-like CLI for Sentry.
4
4
 
5
- ## Installation
5
+ ## Setup
6
6
 
7
- $ npm install sentry
7
+ ```bash
8
+ # Login via OAuth (device flow)
9
+ sentry auth login
10
+ ```
8
11
 
9
- ## Example
12
+ You'll be given a URL and a code to enter. Once you authorize, the CLI will automatically receive your token.
10
13
 
11
- ````coffeescript
12
- sentry = require 'sentry'
14
+ Or use an API token directly:
13
15
 
14
- # Watch changes in file.js
15
- sentry.watch 'file.js', (file) -> console.log "A change has been made in #{file}"
16
+ ```bash
17
+ sentry auth login --token YOUR_SENTRY_API_TOKEN
18
+ ```
16
19
 
17
- # Watch changes on any file ending in .coffee one directory deep
18
- sentry.watch 'fld/*.coffee', ->
20
+ ## Commands
19
21
 
20
- # Watch changes recursively on any files
21
- sentry.watch 'fld/**/*', ->
22
+ ### Auth
22
23
 
23
- # Watch files recursively that match a regex
24
- sentry.watchRegExp 'fld/', /regex/, ->
24
+ ```bash
25
+ sentry auth login # Login via OAuth device flow
26
+ sentry auth logout # Logout
27
+ sentry auth status # Check auth status
28
+ ```
25
29
 
26
- # If you pass a string instead of a function it'll execute that child process
27
- sentry.watch 'file.coffee', 'coffee -c'
28
- ````
30
+ ### Organizations
29
31
 
30
- ## API
32
+ ```bash
33
+ sentry org list # List all orgs
34
+ sentry org list --json # Output as JSON
35
+ ```
31
36
 
32
- Sentry comes with two methods `watch` and `watchRegExp`.
37
+ ### Projects
33
38
 
34
- ### sentry.watch(filePath, [task], callback)
39
+ ```bash
40
+ sentry project list # List all projects
41
+ sentry project list my-org # List projects in org
42
+ sentry project list --platform javascript # Filter by platform
43
+ ```
35
44
 
36
- Optionally you may pass a task which will send `(err, stdout, stderr)` as the arguments to the callback
45
+ ### Issues
37
46
 
38
- ````coffeescript
39
- sentry.watch 'file.js', 'coffee -c', (err, stdout, stderr) ->
40
- ````
47
+ ```bash
48
+ sentry issue list --org my-org --project my-project # List issues
49
+ sentry issue list --org my-org --project my-project --json
50
+ sentry issue get 123456789 # Get issue by ID
51
+ sentry issue get 123456789 --event # Include latest event
52
+ ```
41
53
 
42
- Or simply just a callback and Sentry will pass the filename to the callback
54
+ ### API
43
55
 
44
- ````coffeescript
45
- sentry.watch 'file.js', (filename) ->
46
- ````
56
+ ```bash
57
+ sentry api /organizations/ # GET request
58
+ sentry api /issues/123/ --method PUT --field status=resolved
59
+ sentry api /organizations/ --include # Show headers
60
+ ```
47
61
 
48
- Feel free to use wildcards with extensions
62
+ ## Development
49
63
 
50
- ````coffeescript
64
+ ```bash
65
+ bun install
66
+ bun run --env-file=.env.local src/bin.ts --help # Run CLI in dev mode
67
+ bun run build # Build binary
68
+ ```
51
69
 
52
- # Find all files one directory deep
53
- sentry.watch '/folder/*', ->
70
+ See [DEVELOPMENT.md](DEVELOPMENT.md) for detailed development instructions.
54
71
 
55
- # Find all files one directory deep ending in .coffee
56
- sentry.watch '/folder/*.coffee', ->
72
+ ## Config
57
73
 
58
- # Find all files recursively
59
- sentry.watch '/folder/**/*', ->
60
-
61
- # Find all files recursively ending in .txt
62
- sentry.watch '/folder/**/*.txt', ->
63
- ````
64
-
65
- ### sentry.watchRegExp(root, regex, [task], callback)
66
-
67
- Just like sentry.watch but instead you must pass a root directory and regular expression to match files against.
68
-
69
- ````coffeescript
70
-
71
- # Find all files in this folder that end in .coffee
72
- sentry.watchRegExp '', /\.coffee$/, ->
73
-
74
- # Find all files in the adjacent 'test' folder that begin with test and end in .coffee
75
- sentry.watchRegExp '../tests/', /^test_,.coffee$/, ->
76
- ````
77
-
78
- ## To run tests
79
-
80
- Sentry uses [Jasmine-node](https://github.com/mhevery/jasmine-node) for testing. Simply run the jasmine-node command with the coffeescript flag
81
-
82
- jasmine-node spec --coffee
74
+ Stored in `~/.sentry-cli-next/config.json` (mode 600).