rightmodeler 0.1.0 → 0.1.2
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 +2 -1
- package/dist-bundle/cli.js +1 -1
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
# Rightmodeler CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Published on npm as `rightmodeler`; inside this repository the workspace package is named
|
|
4
|
+
`@rightmodeler/cli` so it cannot collide with the repository root package.
|
|
4
5
|
|
|
5
6
|
Start with [the packaged getting-started guide](docs/getting-started.md).
|
package/dist-bundle/cli.js
CHANGED
|
@@ -45182,7 +45182,7 @@ function rollbackSwaps(options) {
|
|
|
45182
45182
|
}
|
|
45183
45183
|
|
|
45184
45184
|
// src/version.ts
|
|
45185
|
-
var version2 = "0.1.
|
|
45185
|
+
var version2 = "0.1.2";
|
|
45186
45186
|
|
|
45187
45187
|
// src/cli.ts
|
|
45188
45188
|
function createProgram(io = processIo) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rightmodeler",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"rightmodeler": "./dist-bundle/cli.js"
|
|
@@ -12,5 +12,11 @@
|
|
|
12
12
|
],
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=24"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/elm-os/rightmodeler.git",
|
|
20
|
+
"directory": "harness/packages/rightmodeler"
|
|
15
21
|
}
|
|
16
22
|
}
|