@harmoniclabs/pebble-cli 0.1.1-dev0 → 0.1.2
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/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/version.generated.d.ts +3 -3
- package/dist/version.generated.js +3 -3
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#!/bin/
|
|
1
|
+
#!/usr/bin/env node
|
|
2
2
|
export {};
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
#!/bin/
|
|
2
|
-
':'; //# ; command -v bun >/dev/null 2>&1 && exec bun "$0" "$@" || exec node "$0" "$@"
|
|
1
|
+
#!/usr/bin/env node
|
|
3
2
|
import { Command } from "commander";
|
|
4
3
|
import { PEBBLE_VERSION, PEBBLE_LIB_VERSION, PEBBLE_COMMIT_HASH } from "./version.generated.js";
|
|
5
4
|
import { initPebbleProject } from "./init/initPebbleProject.js";
|
|
@@ -20,6 +19,7 @@ program
|
|
|
20
19
|
if (opts.version) {
|
|
21
20
|
console.log(versionOutput);
|
|
22
21
|
process.exit(0);
|
|
22
|
+
return;
|
|
23
23
|
}
|
|
24
24
|
program.help();
|
|
25
25
|
});
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const PEBBLE_VERSION = "0.1.
|
|
2
|
-
export declare const PEBBLE_LIB_VERSION = "0.1.
|
|
3
|
-
export declare const PEBBLE_COMMIT_HASH = "
|
|
1
|
+
export declare const PEBBLE_VERSION = "0.1.2";
|
|
2
|
+
export declare const PEBBLE_LIB_VERSION = "0.1.2";
|
|
3
|
+
export declare const PEBBLE_COMMIT_HASH = "40887038e5d00f171e4684f4c456ffd468008445";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// This file is auto-generated by scripts/genVersions.js. Do not edit.
|
|
2
|
-
export const PEBBLE_VERSION = "0.1.
|
|
3
|
-
export const PEBBLE_LIB_VERSION = "0.1.
|
|
4
|
-
export const PEBBLE_COMMIT_HASH = "
|
|
2
|
+
export const PEBBLE_VERSION = "0.1.2";
|
|
3
|
+
export const PEBBLE_LIB_VERSION = "0.1.2";
|
|
4
|
+
export const PEBBLE_COMMIT_HASH = "40887038e5d00f171e4684f4c456ffd468008445";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harmoniclabs/pebble-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "A simple, yet rock solid, functional language with an imperative bias, targeting UPLC",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pebble": "./dist/index.js",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@harmoniclabs/crypto": "^0.3.0",
|
|
52
52
|
"@harmoniclabs/obj-utils": "^1.0.0",
|
|
53
|
-
"@harmoniclabs/pebble": "^0.1.
|
|
53
|
+
"@harmoniclabs/pebble": "^0.1.2",
|
|
54
54
|
"@harmoniclabs/plutus-machine": "^2.1.1",
|
|
55
55
|
"@harmoniclabs/uint8array-utils": "^1.0.4",
|
|
56
56
|
"@harmoniclabs/uplc": "^1.4.0",
|
|
@@ -65,4 +65,4 @@
|
|
|
65
65
|
"typescript": "^4.6.3"
|
|
66
66
|
},
|
|
67
67
|
"funding": "https://github.com/sponsors/HarmonicLabs"
|
|
68
|
-
}
|
|
68
|
+
}
|