cashc 0.7.4 → 0.7.6
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/main/index.d.ts +1 -1
- package/dist/main/index.js +1 -1
- package/dist/module/index.d.ts +1 -1
- package/dist/module/index.js +1 -1
- package/package.json +3 -3
package/dist/main/index.d.ts
CHANGED
package/dist/main/index.js
CHANGED
|
@@ -32,5 +32,5 @@ exports.utils = __importStar(require("@cashscript/utils"));
|
|
|
32
32
|
var compiler_js_1 = require("./compiler.js");
|
|
33
33
|
Object.defineProperty(exports, "compileFile", { enumerable: true, get: function () { return compiler_js_1.compileFile; } });
|
|
34
34
|
Object.defineProperty(exports, "compileString", { enumerable: true, get: function () { return compiler_js_1.compileString; } });
|
|
35
|
-
exports.version = '0.7.
|
|
35
|
+
exports.version = '0.7.6';
|
|
36
36
|
//# sourceMappingURL=index.js.map
|
package/dist/module/index.d.ts
CHANGED
package/dist/module/index.js
CHANGED
|
@@ -2,5 +2,5 @@ export * from './Errors.js';
|
|
|
2
2
|
import * as utils_1 from '@cashscript/utils';
|
|
3
3
|
export { utils_1 as utils };
|
|
4
4
|
export { compileFile, compileString } from './compiler.js';
|
|
5
|
-
export const version = '0.7.
|
|
5
|
+
export const version = '0.7.6';
|
|
6
6
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cashc",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"description": "Compile Bitcoin Cash contracts to Bitcoin Cash Script or artifacts",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bitcoin",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@bitauth/libauth": "^1.18.1",
|
|
50
|
-
"@cashscript/utils": "^0.7.
|
|
50
|
+
"@cashscript/utils": "^0.7.6",
|
|
51
51
|
"antlr4ts": "^0.5.0-alpha.4",
|
|
52
52
|
"commander": "^7.1.0",
|
|
53
53
|
"semver": "^7.3.4"
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"ts-jest": "^26.5.1",
|
|
60
60
|
"typescript": "^4.1.5"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "c2daf1d80579e776b28270362041152ab0ac8898"
|
|
63
63
|
}
|