Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
file: npm/circom.wasm
file: npm/bin/circom.wasm
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref }}
asset_name: circom.wasm
1 change: 1 addition & 0 deletions npm/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
demo
dist
4 changes: 0 additions & 4 deletions npm/.npmignore

This file was deleted.

13 changes: 2 additions & 11 deletions npm/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
{
"tabWidth": 4,
"useTabs": false,
"semi": false,
"jsxBracketSameLine": false,
"trailingComma": "es5",
"printWidth": 100,
"arrowParens": "always",
"proseWrap": "always",
"singleQuote": true,
"overrides": [
{
"files": ["**/*.json", "*.json"],
"files": "*.ts",
"options": {
"parser": "json",
"printWidth": 120,
"tabWidth": 2
}
}
Expand Down
6 changes: 3 additions & 3 deletions npm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This project is a version of Circom 2.0 compiled to WASM with AST serialization
The package is distributed under Distributed Lab npm organization. Run the following commanad to install the compiler:

```bash
npm install @distributedlab/circom2
npm install --global @distributedlab/circom2
```

> [!WARNING]
Expand All @@ -21,10 +21,10 @@ npm install @distributedlab/circom2
You can use the compiler in the following way:

```bash
node cli.js <cli_arguments>
circom2 <cli_arguments>
```

Or through using `CircomRunner` class directly. Check out `cli.js` file to learn how it is done.
Or through using `CircomRunner` class directly. Check out `cli.ts` file to learn how it is done.

## Disclaimer

Expand Down
File renamed without changes.
30 changes: 0 additions & 30 deletions npm/cli.js

This file was deleted.

52 changes: 0 additions & 52 deletions npm/index.js

This file was deleted.

Loading