@offckb/cli 0.3.0-canary-9d986c1.0 → 0.3.0-canary-3a320f3.0

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
@@ -198,7 +198,7 @@ You can create a new script project without a frontend. This is useful when you
198
198
  offckb create <your-project-name> --script
199
199
  ```
200
200
 
201
- Note: you need to have rust/cargo/cargo-generate/clang 16+ installed in your environment to use this command. offckb doesn't do anything really, it just call [ckb-script-template](https://github.com/cryptape/ckb-script-tempaltes) to do all the magic.
201
+ Note: you need to have rust/cargo/cargo-generate/clang 16+ installed in your environment to use this command. offckb doesn't do anything really, it just call [ckb-script-template](https://github.com/cryptape/ckb-script-templates) to do all the magic.
202
202
 
203
203
  ### Build and Deploy a script
204
204
 
@@ -299,7 +299,7 @@ Or you can replace the script with a binary file in your single cell script debu
299
299
  offckb debug <transaction-hash> --single-script <single-cell-script-option> --bin <path/to/binary/file>
300
300
  ```
301
301
 
302
- All the debug utils are borrowed from [ckb-debugger](https://github.com/nervosnetwork/ckb-debugger).
302
+ All the debug utils are borrowed from [ckb-debugger](https://github.com/nervosnetwork/ckb-standalone-debugger/tree/develop/ckb-debugger).
303
303
 
304
304
  ### Generate Moleculec bindings
305
305
 
@@ -144,7 +144,7 @@ function getVersionFromBinary(binPath) {
144
144
  const versionOutput = (0, child_process_1.execSync)(`${(0, encoding_1.encodeBinPathForTerminal)(binPath)} --version`, {
145
145
  encoding: 'utf-8',
146
146
  });
147
- const versionMatch = versionOutput.match(/(\d+\.\d+\.\d+)/);
147
+ const versionMatch = versionOutput.match(/(\d+\.\d+\.\d+(-rc\d+)?)/);
148
148
  if (versionMatch) {
149
149
  return versionMatch[0];
150
150
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@offckb/cli",
3
- "version": "0.3.0-canary-9d986c1.0",
3
+ "version": "0.3.0-canary-3a320f3.0",
4
4
  "description": "ckb development network for your first try",
5
5
  "author": "CKB EcoFund",
6
6
  "license": "MIT",