Skip to content

Commit

Permalink
Merge pull request #121 from gnosis/fix-module-entrypoints
Browse files Browse the repository at this point in the history
Fix module entrypoints
  • Loading branch information
jfschwarz authored May 9, 2023
2 parents 092c223 + 4b47a64 commit 25bf6bf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 30 deletions.
15 changes: 9 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
{
"name": "@gnosis.pm/zodiac",
"version": "3.3.0",
"version": "3.3.1",
"description": "Zodiac is a composable design philosophy and collection of standards for building DAO ecosystem tooling.",
"author": "Auryn Macmillan <[email protected]>",
"license": "LGPL-3.0+",
"main": "./dist/sdk/index.js",
"typings": "./dist/sdk/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"files": [
"package.json",
"LICENSE",
Expand Down Expand Up @@ -87,8 +93,5 @@
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"ethers": "^5.7.1"
},
"peerDependencies": {
"ethers": "^5.7.1"
}
}
22 changes: 0 additions & 22 deletions sdk/test.json

This file was deleted.

4 changes: 2 additions & 2 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"target": "esnext",
"target": "es2020",
"outDir": "dist/esm",
"module": "esnext"
"module": "es2020"
},
"include": ["sdk/**/*.ts"]
}

0 comments on commit 25bf6bf

Please sign in to comment.