@rip-lang/all 3.13.146 → 3.13.148
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/package.json +12 -11
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<img src="https://raw.githubusercontent.com/shreeve/rip-lang/main/docs/assets/rip.png" style="width:50px" /> <br>
|
|
2
|
+
|
|
3
|
+
# Rip (all) - @rip-lang/all
|
|
4
|
+
|
|
5
|
+
> Meta-package that installs `rip-lang` and the published `@rip-lang/*` ecosystem packages.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
bun add @rip-lang/all
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Release
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
# Run from the repo root
|
|
17
|
+
|
|
18
|
+
# Standard full ecosystem release
|
|
19
|
+
bun run bump
|
|
20
|
+
|
|
21
|
+
# Selective package release; also refreshes @rip-lang/all
|
|
22
|
+
bun run bump db
|
|
23
|
+
bun run bump db csv
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
- Do not publish `@rip-lang/all` by hand.
|
|
27
|
+
- The root release script updates and publishes `@rip-lang/all` automatically.
|
|
28
|
+
- Full releases come from `bun run bump`; selective package releases also refresh `@rip-lang/all` so its dependency ranges stay current.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rip-lang/all",
|
|
3
|
-
"version": "3.13.
|
|
3
|
+
"version": "3.13.148",
|
|
4
4
|
"description": "Meta-package that installs rip-lang and all @rip-lang/* packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -21,15 +21,16 @@
|
|
|
21
21
|
"author": "Steve Shreeve <steve.shreeve@gmail.com>",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"rip-lang": ">=3.13.
|
|
25
|
-
"@rip-lang/csv": ">=1.3.
|
|
26
|
-
"@rip-lang/db": ">=1.3.
|
|
27
|
-
"@rip-lang/http": ">=1.1.
|
|
28
|
-
"@rip-lang/print": ">=1.1.
|
|
29
|
-
"@rip-lang/schema": ">=0.3.
|
|
30
|
-
"@rip-lang/server": ">=1.3.
|
|
31
|
-
"@rip-lang/
|
|
32
|
-
"@rip-lang/
|
|
33
|
-
"@rip-lang/
|
|
24
|
+
"rip-lang": ">=3.13.122",
|
|
25
|
+
"@rip-lang/csv": ">=1.3.100",
|
|
26
|
+
"@rip-lang/db": ">=1.3.110",
|
|
27
|
+
"@rip-lang/http": ">=1.1.101",
|
|
28
|
+
"@rip-lang/print": ">=1.1.105",
|
|
29
|
+
"@rip-lang/schema": ">=0.3.101",
|
|
30
|
+
"@rip-lang/server": ">=1.3.117",
|
|
31
|
+
"@rip-lang/stamp": ">=0.1.21",
|
|
32
|
+
"@rip-lang/swarm": ">=1.2.111",
|
|
33
|
+
"@rip-lang/ui": ">=0.4.2",
|
|
34
|
+
"@rip-lang/x12": ">=0.2.101"
|
|
34
35
|
}
|
|
35
36
|
}
|