@invarn/cli 0.9.149 → 0.9.150
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/README.md +28 -0
- package/dist/THIRD-PARTY-LICENSES.txt +27 -1
- package/dist/invarn.cjs +7 -7
- package/dist/sdk.mjs +7 -7
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -10,6 +10,34 @@ npm install -g @invarn/cli
|
|
|
10
10
|
|
|
11
11
|
This installs the `invarn` command.
|
|
12
12
|
|
|
13
|
+
## Set up a project in one command
|
|
14
|
+
|
|
15
|
+
If you have just connected a repository on [invarn.com](https://invarn.com),
|
|
16
|
+
run this in your checkout:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npx @invarn/cli@latest setup
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
It signs the machine in, matches the checkout to the project you created,
|
|
23
|
+
writes the pipeline into the repo, finds the build variables and secrets
|
|
24
|
+
already on this machine, **asks** before uploading any of them, then commits,
|
|
25
|
+
pushes, and streams the first proof.
|
|
26
|
+
|
|
27
|
+
| Flag | Effect |
|
|
28
|
+
|---|---|
|
|
29
|
+
| `--yes` | Skip both confirmations. For scripting. |
|
|
30
|
+
| `--no-secrets` | Skip secret discovery and upload entirely. |
|
|
31
|
+
| `--no-push` | Write the files, stop before committing. |
|
|
32
|
+
| `--no-build` | Stop after the push. |
|
|
33
|
+
| `--import <path>` | Adopt an existing `bitrise.yml` instead of the generated pipeline. |
|
|
34
|
+
| `--workflow <name>` | Which workflow the first proof runs. |
|
|
35
|
+
| `--json` | Machine-readable output. Implies `--yes`. |
|
|
36
|
+
|
|
37
|
+
Nothing leaves your machine without a `y`: secret discovery only looks for the
|
|
38
|
+
keys your pipeline itself declares and leaves empty, values are never printed,
|
|
39
|
+
and the upload sits behind one confirmation that defaults to No.
|
|
40
|
+
|
|
13
41
|
## Getting Started
|
|
14
42
|
|
|
15
43
|
### 1. Authenticate
|
|
@@ -7,7 +7,7 @@ by their licenses. Packages resolved at install time (e.g. @invarn/cibuild,
|
|
|
7
7
|
@anthropic-ai/claude-agent-sdk) are not listed here — they ship with their own
|
|
8
8
|
license files.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
9 bundled package(s).
|
|
11
11
|
|
|
12
12
|
==============================================================================
|
|
13
13
|
@modelcontextprotocol/sdk@1.29.0 — MIT
|
|
@@ -150,6 +150,32 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
150
150
|
The complete list of contributors can be found at:
|
|
151
151
|
- https://github.com/garycourt/uri-js/graphs/contributors
|
|
152
152
|
|
|
153
|
+
==============================================================================
|
|
154
|
+
js-yaml@4.3.2 — MIT
|
|
155
|
+
==============================================================================
|
|
156
|
+
|
|
157
|
+
(The MIT License)
|
|
158
|
+
|
|
159
|
+
Copyright (C) 2011-2015 by Vitaly Puzrin
|
|
160
|
+
|
|
161
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
162
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
163
|
+
in the Software without restriction, including without limitation the rights
|
|
164
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
165
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
166
|
+
furnished to do so, subject to the following conditions:
|
|
167
|
+
|
|
168
|
+
The above copyright notice and this permission notice shall be included in
|
|
169
|
+
all copies or substantial portions of the Software.
|
|
170
|
+
|
|
171
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
172
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
173
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
174
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
175
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
176
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
177
|
+
THE SOFTWARE.
|
|
178
|
+
|
|
153
179
|
==============================================================================
|
|
154
180
|
json-schema-traverse@1.0.0 — MIT
|
|
155
181
|
==============================================================================
|