rainbo 0.1.0 → 0.1.1

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 CHANGED
@@ -96,6 +96,7 @@ rainbo data-sync cmt-jobs --data-file cmt-jobs.json
96
96
  rainbo data-verify lineage-verify-table --data-file verify-table.json
97
97
  rainbo toolbox sql-debug --datasource-id 1 --sql "select 1"
98
98
  rainbo toolbox lineage-spark --data-file lineage-spark.json
99
+ rainbo toolbox volume-content --datasource-id 1 --volume public.v --file-path dir/result.json
99
100
 
100
101
  rainbo lineage graph create --data-file lineage-graph.json
101
102
  rainbo lineage graph get "lineage_graph:migration:1001"
@@ -143,7 +144,7 @@ RAINBO_NPM_BUILD_TARGETS=darwin-arm64,darwin-x64 npm run publish:npm:local
143
144
  ```
144
145
 
145
146
  The package source lives under the Rainbo GitLab repository as
146
- `packages/rainbo-cli`; npm publishing is intentionally local and does not depend
147
+ `packages/rainbo`; npm publishing is intentionally local and does not depend
147
148
  on a separate repository or CI workflow.
148
149
 
149
150
  ## Skills
@@ -155,7 +156,7 @@ npx skills add git@gitlab.clickzetta-inc.com:ee/rainbo.git -y -g
155
156
  ```
156
157
 
157
158
  `git@gitlab.clickzetta-inc.com:ee/rainbo.git` is the skills repository
158
- source used by `rainbo update`. The old aggregate `rainbo-cli` skill has
159
+ source used by `rainbo update`. The old aggregate `rainbo` skill has
159
160
  been removed; current Rainbo skills use focused names such as `rainbo-auth`.
160
161
 
161
162
  New Rainbo skills should follow the style in the repository-level
@@ -166,7 +167,7 @@ to `rainbo-auth` first instead of duplicating session rules.
166
167
 
167
168
  ## Project layout
168
169
 
169
- `packages/rainbo-cli/`:
170
+ `packages/rainbo/`:
170
171
 
171
172
  ```text
172
173
  rust/ Rust CLI implementation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rainbo",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Rainbo command line tools for data migration workflows",
5
5
  "bin": {
6
6
  "rainbo": "packaging/npm/run.js"
@@ -31,7 +31,7 @@ function installIfMissing() {
31
31
  : `unsupported platform ${currentPlatformKey()}`;
32
32
  console.error(`rainbo binary package is missing for ${currentPlatformKey()}.`);
33
33
  console.error(`Expected bundled npm binary: ${packageHint}`);
34
- console.error("Rebuild and reinstall the npm package from packages/rainbo-cli.");
34
+ console.error("Rebuild and reinstall the npm package from packages/rainbo.");
35
35
  process.exit(1);
36
36
  }
37
37