Skip to content

Commit

Permalink
fix(publish): ensure we publish the correct files
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlc03 committed Jan 17, 2024
1 parent 55c35c9 commit bc42724
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 1 deletion.
8 changes: 8 additions & 0 deletions circuits/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
"version": "1.1.2",
"description": "zk-SNARK circuits for MACI",
"main": "build/ts/index.js",
"files": [
"build",
"circom",
"circomkit.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build-test-circuits-c": "ts-node ./ts/compile.ts --cWitness",
"build-test-circuits-wasm": "ts-node ./ts/compile.ts",
Expand Down
4 changes: 3 additions & 1 deletion cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"maci-cli": "./build/ts/index.js"
},
"files": [
"build"
"build",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"watch": "tsc --watch",
Expand Down
6 changes: 6 additions & 0 deletions contracts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
"version": "1.1.2",
"description": "Solidity Smart Contracts for MACI (Minimal Anti-Collusion Infrastructure)",
"main": "build/ts/index.js",
"files": [
"build",
"contracts",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"hardhat": "hardhat node --hostname 0.0.0.0 --port 8545",
Expand Down
5 changes: 5 additions & 0 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
"description": "",
"main": "build/ts/index.js",
"types": "build/ts/index.d.ts",
"files": [
"build",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.build.json",
Expand Down
5 changes: 5 additions & 0 deletions crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.1.2",
"description": "A package containing cryptography utilities for MACI",
"main": "build/ts/index.js",
"files": [
"build",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"benchmarks": "ts-node ts/__benchmarks__/index.ts",
Expand Down
5 changes: 5 additions & 0 deletions domainobjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.1.2",
"description": "",
"main": "build/ts/index.js",
"files": [
"build",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc -p tsconfig.build.json",
Expand Down
5 changes: 5 additions & 0 deletions integrationTests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
"version": "1.1.2",
"description": "",
"main": "build/ts/index.js",
"files": [
"build",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
Expand Down

0 comments on commit bc42724

Please sign in to comment.