@rip-lang/all 3.13.147 → 3.13.149

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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. 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.147",
3
+ "version": "3.13.149",
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.121",
25
- "@rip-lang/csv": ">=1.3.99",
26
- "@rip-lang/db": ">=1.3.109",
27
- "@rip-lang/http": ">=1.1.100",
28
- "@rip-lang/print": ">=1.1.104",
29
- "@rip-lang/schema": ">=0.3.100",
30
- "@rip-lang/server": ">=1.3.116",
31
- "@rip-lang/swarm": ">=1.2.110",
32
- "@rip-lang/ui": ">=0.4.1",
33
- "@rip-lang/x12": ">=0.2.100"
24
+ "rip-lang": ">=3.13.123",
25
+ "@rip-lang/csv": ">=1.3.101",
26
+ "@rip-lang/db": ">=1.3.111",
27
+ "@rip-lang/http": ">=1.1.102",
28
+ "@rip-lang/print": ">=1.1.106",
29
+ "@rip-lang/schema": ">=0.3.102",
30
+ "@rip-lang/server": ">=1.3.118",
31
+ "@rip-lang/stamp": ">=0.1.22",
32
+ "@rip-lang/swarm": ">=1.2.112",
33
+ "@rip-lang/ui": ">=0.4.3",
34
+ "@rip-lang/x12": ">=0.2.102"
34
35
  }
35
36
  }