Skip to content

Commit

Permalink
fix: download the correct cli template files
Browse files Browse the repository at this point in the history
  • Loading branch information
vplasencia committed Feb 29, 2024
1 parent c4dd1e4 commit e82b463
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/cli-template-contracts-hardhat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"test:report-gas": "REPORT_GAS=true hardhat test",
"test:coverage": "hardhat coverage",
"typechain": "hardhat typechain",
"prepublish": "tar -czf files.tgz .gitignore",
"prepublish": "tar --exclude typechain-types --exclude artifacts --exclude cache --exclude node_modules -czf files.tgz .gitignore .yarn .yarnrc.yml",
"lint": "eslint . --ext .js,.ts && solhint 'contracts/**/*.sol'",
"prettier": "prettier -c --plugin=prettier-plugin-solidity .",
"prettier:write": "prettier -w --plugin=prettier-plugin-solidity ."
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-template-monorepo-ethers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"lint": "yarn workspaces foreach -A -pi run lint",
"prettier": "prettier -c . && yarn workspaces foreach -A -pi run prettier",
"prettier:write": "prettier -w . && yarn workspaces foreach -A -pi run prettier:write",
"prepublish": "tar -czf files.tgz .gitignore .yarn .yarnrc.yml apps"
"prepublish": "tar --exclude typechain-types --exclude artifacts --exclude cache --exclude node_modules --exclude out --exclude .next --exclude build -czf files.tgz .gitignore .yarn .yarnrc.yml apps"
},
"workspaces": [
"apps/*"
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-template-monorepo-subgraph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"lint": "yarn workspaces foreach -A -pi run lint",
"prettier": "prettier -c . && yarn workspaces foreach -A -pi run prettier",
"prettier:write": "prettier -w . && yarn workspaces foreach -A -pi run prettier:write",
"prepublish": "tar -czf files.tgz .gitignore .yarn .yarnrc.yml apps"
"prepublish": "tar --exclude typechain-types --exclude artifacts --exclude cache --exclude node_modules --exclude out --exclude .next --exclude build -czf files.tgz .gitignore .yarn .yarnrc.yml apps"
},
"workspaces": [
"apps/*"
Expand Down

0 comments on commit e82b463

Please sign in to comment.