From c92f3624fd0d25eedfbdebf9e28ece24af22c2aa Mon Sep 17 00:00:00 2001 From: James Geary <36774175+jgeary@users.noreply.github.com> Date: Fri, 15 Apr 2022 18:51:03 -0400 Subject: [PATCH] fix? --- .github/workflows/deploy-module.yml | 2 +- package.json | 79 +++++++++++++++-------------- 2 files changed, 41 insertions(+), 40 deletions(-) diff --git a/.github/workflows/deploy-module.yml b/.github/workflows/deploy-module.yml index 91503204..fab2f8d1 100644 --- a/.github/workflows/deploy-module.yml +++ b/.github/workflows/deploy-module.yml @@ -59,7 +59,7 @@ jobs: token: ${{ secrets.NPM_TOKEN }} dry-run: false - name: Bundle release - run: sudo apt-get install zip && zip -r release.zip dist package.json LICENSE README.md + run: sudo apt-get install zip && zip -r ${{ env.TAG }}.zip dist package.json LICENSE README.md - uses: ncipollo/release-action@v1 with: artifacts: ${{ env.TAG }}.zip diff --git a/package.json b/package.json index 2509a635..71b8ae0a 100644 --- a/package.json +++ b/package.json @@ -1,41 +1,42 @@ { - "name": "blahblahblahtestasdf", - "version": "1.0.23", - "private": false, - "homepage": "https://github.com/ourzora/v3", - "repository": { - "type": "git", - "url": "https://github.com/ourzora/v3.git" - }, - "files": [ - "./dist/**/*", - "./dist/*" - ], - "dependencies": { - "@manifoldxyz/royalty-registry-solidity": "^1.0.9", - "@openzeppelin/contracts": "^4.5.0", - "@rari-capital/solmate": "^6.2.0" - }, - "devDependencies": { - "@typechain/ethers-v5": "^10.0.0", - "husky": "^7.0.0", - "lint-staged": "^12.3.7", - "prettier": "^2.6.1", - "prettier-plugin-solidity": "^1.0.0-beta.19", - "solhint": "^3.3.7", - "solhint-plugin-prettier": "^0.0.5", - "typechain": "^8.0.0", - "typescript": "^4.6.3" - }, - "lint-staged": { - "*.{ts,js,css,md,sol}": "prettier --write", - "*.sol": "solhint" - }, - "scripts": { - "build": "forge build && yarn typechain", - "clean": "forge clean && rm -rf ./dist", - "prepublishOnly": "rm -rf ./dist && forge clean && forge build && yarn typechain && cp -R contracts dist && cp -R addresses dist", - "test": "forge test", - "typechain": "typechain --target=ethers-v5 'dist/artifacts/*/*.json' --out-dir dist/typechain" - } + "name": "blahblahblahtestasdf", + "version": "1.0.23", + "private": false, + "homepage": "https://github.com/ourzora/v3", + "repository": { + "type": "git", + "url": "https://github.com/ourzora/v3.git" + }, + "files": [ + "./dist/**/*", + "./dist/*" + ], + "dependencies": { + "@manifoldxyz/royalty-registry-solidity": "^1.0.9", + "@openzeppelin/contracts": "^4.5.0", + "@rari-capital/solmate": "^6.2.0", + "blahblahblahtestasdf": "^1.0.20" + }, + "devDependencies": { + "@typechain/ethers-v5": "^10.0.0", + "husky": "^7.0.0", + "lint-staged": "^12.3.7", + "prettier": "^2.6.1", + "prettier-plugin-solidity": "^1.0.0-beta.19", + "solhint": "^3.3.7", + "solhint-plugin-prettier": "^0.0.5", + "typechain": "^8.0.0", + "typescript": "^4.6.3" + }, + "lint-staged": { + "*.{ts,js,css,md,sol}": "prettier --write", + "*.sol": "solhint" + }, + "scripts": { + "build": "forge build && yarn typechain", + "clean": "forge clean && rm -rf ./dist", + "prepublishOnly": "rm -rf ./dist && forge clean && forge build && yarn typechain && cp -R contracts dist && cp -R addresses dist", + "test": "forge test", + "typechain": "typechain --target=ethers-v5 'dist/artifacts/*/*.json' --out-dir dist/typechain" + } }