@v5x/cli 0.0.10 → 0.0.11

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/dist/index.js +3 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -118,7 +118,7 @@ var require_picocolors = __commonJS((exports, module) => {
118
118
  // package.json
119
119
  var package_default = {
120
120
  name: "@v5x/cli",
121
- version: "0.0.10",
121
+ version: "0.0.11",
122
122
  description: "Command line interface for v5x.",
123
123
  license: "MIT",
124
124
  type: "module",
@@ -3780,7 +3780,8 @@ class V5SerialDevice extends VexSerialDevice {
3780
3780
  }
3781
3781
  }
3782
3782
  // src/index.ts
3783
- console.log(import_picocolors.default.redBright(`v5x ${package_default.version}`));
3783
+ var brand = (str) => `\x1B[0;38;2;129;140;248;49m${str}\x1B[0m`;
3784
+ console.log(brand(`v5x ${package_default.version}`));
3784
3785
  console.log("modern cli for v5 development");
3785
3786
  async function main() {
3786
3787
  const device = new V5SerialDevice(serial);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@v5x/cli",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Command line interface for v5x.",
5
5
  "license": "MIT",
6
6
  "type": "module",