Skip to content

Commit

Permalink
chore: v0.2.0
Browse files Browse the repository at this point in the history
- fix issues with building as package
- don't add fift WASM to package

Fixes #51
Fixes #49
  • Loading branch information
i582 committed Feb 19, 2025
1 parent 52aade0 commit f6e603a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 18 deletions.
10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tact-lang/opcode",
"version": "0.1.0",
"version": "0.2.0",
"repository": "https://github.com/tact-lang/ton-opcode.git",
"author": "Tact Authors",
"main": "dist/index.js",
Expand All @@ -15,11 +15,12 @@
"gen-spec": "ts-node scripts/gen-codepage.ts",
"test": "vitest",
"coverage": "c8 vitest",
"postinstall": "husky"
"postinstall": "husky || true"
},
"devDependencies": {
"@scaleton/func-debug-symbols": "0.1.5",
"@ton-community/func-js": "^0.9.0",
"@ton-community/func-js": "~0.6.2",
"@ton-community/func-js-bin": "~0.4.4",
"@types/node": "^22.13.1",
"c8": "^10.1.3",
"eslint": "^9.19.0",
Expand Down Expand Up @@ -76,6 +77,7 @@
"files": [
"dist",
"!dist/test",
"!dist/test/**/*"
"!dist/test/**/*",
"!**/fift/*.*"
]
}
7 changes: 0 additions & 7 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,3 @@ export {AssemblyWriter} from "./printer/assembly-writer"

export {debugSymbols} from "./utils/known-methods"
export {Cell} from "@ton/core"

export type {
FiftCompilationResult,
FiftCompilationResultOk,
FiftCompilationResultError,
} from "./fift/compileFift"
export {compileFift} from "./fift/compileFift"
22 changes: 15 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,8 @@ __metadata:
resolution: "@tact-lang/opcode@workspace:."
dependencies:
"@scaleton/func-debug-symbols": "npm:0.1.5"
"@ton-community/func-js": "npm:^0.9.0"
"@ton-community/func-js": "npm:~0.6.2"
"@ton-community/func-js-bin": "npm:~0.4.4"
"@ton/core": "npm:^0.60.0"
"@ton/crypto": "npm:^3.3.0"
"@types/node": "npm:^22.13.1"
Expand All @@ -659,22 +660,29 @@ __metadata:
languageName: unknown
linkType: soft

"@ton-community/func-js-bin@npm:0.4.6":
"@ton-community/func-js-bin@npm:0.4.4-newops":
version: 0.4.4-newops
resolution: "@ton-community/func-js-bin@npm:0.4.4-newops"
checksum: 10c0/cd0f71fdd73ab06bada2be04ffba1373388a93cc9a920aaba6d7dfe36066c1a590e1c3888eff110db0e954eb5516c2c373d688959c0182f622b98142d66c06e6
languageName: node
linkType: hard

"@ton-community/func-js-bin@npm:~0.4.4":
version: 0.4.6
resolution: "@ton-community/func-js-bin@npm:0.4.6"
checksum: 10c0/b094049809bc23402a65d2ddf86c467eae6ada4c810f3eba794690ab31a436c84cdd18af7f728141d8a694d1389e98d522517ceaa695cebe093688c055c12601
languageName: node
linkType: hard

"@ton-community/func-js@npm:^0.9.0":
version: 0.9.0
resolution: "@ton-community/func-js@npm:0.9.0"
"@ton-community/func-js@npm:~0.6.2":
version: 0.6.3
resolution: "@ton-community/func-js@npm:0.6.3"
dependencies:
"@ton-community/func-js-bin": "npm:0.4.6"
"@ton-community/func-js-bin": "npm:0.4.4-newops"
arg: "npm:^5.0.2"
bin:
func-js: dist/cli.js
checksum: 10c0/3c536d82c2a34f04e3ea2b523cfd871cf0ee02752364554787f6d811dcb9c5d9c6501c80b7376e45dff3254ce8d171fb773214acd4ef336775f741089f1373ce
checksum: 10c0/9a87648fdc91f1145d6f5cabd2777b0f418c4b0e986ab07cd2754e7dd965e1986cb527d4568d63535bc9d322ae1718bc16e2adc4d1005a8f20374931833be312
languageName: node
linkType: hard

Expand Down

0 comments on commit f6e603a

Please sign in to comment.