Skip to content

Commit

Permalink
🪛 Use pnpm for publishing (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
yivlad committed Apr 11, 2022
1 parent 96210f0 commit 3e41a2a
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:others": "wsrun -e -s -x @ethereum-waffle/jest -c test",
"test:jest": "wsrun -p @ethereum-waffle/jest -c test",
"version": "pnpm changeset version && pnpm install",
"release": "yarn build && pnpm publish -r && pnpm changeset tag"
"release": "pnpm run build && yarn changeset publish"
},
"devDependencies": {
"@types/chai": "^4.2.14",
Expand Down
2 changes: 1 addition & 1 deletion waffle-chai/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/chai",
"description": "A sweet set of chai matchers for your blockchain testing needs.",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {MockProvider} from '../../../../waffle-provider/dist/esm';
import {MockProvider} from '@ethereum-waffle/provider';
import {validateContract, validateFnName, validateMockProvider} from './calledOnContractValidators';

export function supportCalledOnContract(Assertion: Chai.AssertionStatic) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {MockProvider} from '../../../../waffle-provider/dist/esm';
import {MockProvider} from '@ethereum-waffle/provider';
import {validateContract, validateFnName, validateMockProvider} from './calledOnContractValidators';

export function supportCalledOnContractWith(Assertion: Chai.AssertionStatic) {
Expand Down
2 changes: 1 addition & 1 deletion waffle-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ethereum-waffle",
"description": "Sweeter, faster and simpler than truffle.",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion waffle-compiler/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/compiler",
"description": "Compile solidity without the hassle.",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion waffle-e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereum-waffle/e2e",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"private": true,
"main": "index.js",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion waffle-ens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereum-waffle/ens",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"description": "A mock ens implementation for testing.",
"repository": "git@github.com:EthWorks/Waffle.git",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
Expand Down
2 changes: 1 addition & 1 deletion waffle-hardhat/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/hardhat",
"description": "A sweet set of chai matchers for your blockchain testing needs.",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion waffle-mock-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/mock-contract",
"description": "Mock smart contracts in a smart way.",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down
2 changes: 1 addition & 1 deletion waffle-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@ethereum-waffle/provider",
"description": "A mock provider for your blockchain testing needs.",
"version": "4.0.0-alpha.14",
"version": "4.0.0-alpha.16",
"author": "Marek Kirejczyk <account@ethworks.io> (http://ethworks.io)",
"repository": "git@github.com:EthWorks/Waffle.git",
"private": false,
Expand Down

0 comments on commit 3e41a2a

Please sign in to comment.