sentry 0.1.2 → 0.3.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,113 @@
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
5
  ## Installation
6
6
 
7
- $ npm install sentry
7
+ Install globally with your preferred package manager:
8
8
 
9
- ## Example
9
+ ```bash
10
+ # npm
11
+ npm install -g sentry
10
12
 
11
- ````coffeescript
12
- sentry = require 'sentry'
13
+ # pnpm
14
+ pnpm add -g sentry
13
15
 
14
- # Watch changes in file.js
15
- sentry.watch 'file.js', (file) -> console.log "A change has been made in #{file}"
16
+ # yarn
17
+ yarn global add sentry
16
18
 
17
- # Watch changes on any file ending in .coffee one directory deep
18
- sentry.watch 'fld/*.coffee', ->
19
+ # bun
20
+ bun add -g sentry
21
+ ```
19
22
 
20
- # Watch changes recursively on any files
21
- sentry.watch 'fld/**/*', ->
23
+ Or run directly without installing:
22
24
 
23
- # Watch files recursively that match a regex
24
- sentry.watchRegExp 'fld/', /regex/, ->
25
+ ```bash
26
+ npx sentry --help
27
+ pnpm dlx sentry --help
28
+ yarn dlx sentry --help
29
+ bunx sentry --help
30
+ ```
25
31
 
26
- # If you pass a string instead of a function it'll execute that child process
27
- sentry.watch 'file.coffee', 'coffee -c'
28
- ````
32
+ ## Setup
29
33
 
30
- ## API
34
+ ```bash
35
+ # Login via OAuth (device flow)
36
+ sentry auth login
37
+ ```
31
38
 
32
- Sentry comes with two methods `watch` and `watchRegExp`.
39
+ You'll be given a URL and a code to enter. Once you authorize, the CLI will automatically receive your token.
33
40
 
34
- ### sentry.watch(filePath, [task], callback)
41
+ Or use an API token directly:
35
42
 
36
- Optionally you may pass a task which will send `(err, stdout, stderr)` as the arguments to the callback
43
+ ```bash
44
+ sentry auth login --token YOUR_SENTRY_API_TOKEN
45
+ ```
37
46
 
38
- ````coffeescript
39
- sentry.watch 'file.js', 'coffee -c', (err, stdout, stderr) ->
40
- ````
47
+ ## Commands
41
48
 
42
- Or simply just a callback and Sentry will pass the filename to the callback
49
+ ### Auth
43
50
 
44
- ````coffeescript
45
- sentry.watch 'file.js', (filename) ->
46
- ````
51
+ ```bash
52
+ sentry auth login # Login via OAuth device flow
53
+ sentry auth logout # Logout
54
+ sentry auth status # Check auth status
55
+ ```
47
56
 
48
- Feel free to use wildcards with extensions
57
+ ### Organizations
49
58
 
50
- ````coffeescript
59
+ ```bash
60
+ sentry org list # List all orgs
61
+ sentry org list --json # Output as JSON
62
+ sentry org view my-org # View organization details
63
+ sentry org view my-org -w # Open organization in browser
64
+ ```
51
65
 
52
- # Find all files one directory deep
53
- sentry.watch '/folder/*', ->
66
+ ### Projects
54
67
 
55
- # Find all files one directory deep ending in .coffee
56
- sentry.watch '/folder/*.coffee', ->
68
+ ```bash
69
+ sentry project list # List all projects
70
+ sentry project list my-org # List projects in org
71
+ sentry project list --platform javascript # Filter by platform
72
+ sentry project view my-project # View project details
73
+ sentry project view my-project -w # Open project in browser
74
+ ```
57
75
 
58
- # Find all files recursively
59
- sentry.watch '/folder/**/*', ->
76
+ ### Issues
60
77
 
61
- # Find all files recursively ending in .txt
62
- sentry.watch '/folder/**/*.txt', ->
63
- ````
78
+ ```bash
79
+ sentry issue list --org my-org --project my-project # List issues
80
+ sentry issue list --org my-org --project my-project --json
81
+ sentry issue view 123456789 # View issue by ID
82
+ sentry issue view PROJ-ABC # View issue by short ID
83
+ sentry issue view 123456789 -w # Open issue in browser
84
+ ```
64
85
 
65
- ### sentry.watchRegExp(root, regex, [task], callback)
86
+ ### Events
66
87
 
67
- Just like sentry.watch but instead you must pass a root directory and regular expression to match files against.
88
+ ```bash
89
+ sentry event view abc123def # View event by ID
90
+ sentry event view abc123def -w # Open event in browser
91
+ ```
68
92
 
69
- ````coffeescript
93
+ ### API
70
94
 
71
- # Find all files in this folder that end in .coffee
72
- sentry.watchRegExp '', /\.coffee$/, ->
95
+ ```bash
96
+ sentry api /organizations/ # GET request
97
+ sentry api /issues/123/ --method PUT --field status=resolved
98
+ sentry api /organizations/ --include # Show headers
99
+ ```
73
100
 
74
- # Find all files in the adjacent 'test' folder that begin with test and end in .coffee
75
- sentry.watchRegExp '../tests/', /^test_,.coffee$/, ->
76
- ````
101
+ ## Development
77
102
 
78
- ## To run tests
103
+ ```bash
104
+ bun install
105
+ bun run --env-file=.env.local src/bin.ts --help # Run CLI in dev mode
106
+ bun run build # Build binary
107
+ ```
79
108
 
80
- Sentry uses [Jasmine-node](https://github.com/mhevery/jasmine-node) for testing. Simply run the jasmine-node command with the coffeescript flag
109
+ See [DEVELOPMENT.md](DEVELOPMENT.md) for detailed development instructions.
81
110
 
82
- jasmine-node spec --coffee
111
+ ## Config
112
+
113
+ Stored in `~/.sentry/config.json` (mode 600).