Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Codespace super chainsaw wwgxr6ggxx5fggx #136

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ This changelog contains changes starting from version v0.1.0

Update registry interface so that a contract can be added as multiple types

- Include constants and datatypes in npm package [#119](https://github.com/safe-global/safe-core-protocol/pull/119/files)

# Version 0.2.1 Alpha

## Safe{Core} Protocol contracts
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@safe-global/safe-core-protocol",
"version": "0.3.0-alpha.1",
"version": "0.3.0-alpha.2",
"description": "Safe{Core} Protocol contracts",
"main": "dist/deployments.js",
"repository": {
Expand All @@ -12,8 +12,6 @@
"files": [
"contracts",
"dist",
"scripts",
"test",
"artifacts",
"deployments.ts"
],
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"allowJs": false /* Allow javascript files to be compiled. */,
"declaration": true /* Generates corresponding '.d.ts' file. */,
"sourceMap": false /* Generates corresponding '.map' file. */,
"outDir": "./dist" /* Redirect output structure to the directory. */,
"outDir": "dist" /* Redirect output structure to the directory. */,
"strict": true /* Enable all strict type-checking options. */,
"noUnusedParameters": true /* Report errors on unused parameters. */,
"noImplicitReturns": true /* Report error when not all code paths in function return a value. */,
Expand All @@ -18,6 +18,6 @@
"resolveJsonModule": true
},
"exclude": ["dist", "node_modules"],
"include": ["./src/index.ts", "./types", "./test/**/*", "./**/*.ts"],
"files": ["./deployments.ts"]
"include": ["./types", "./test/**/*", "./**/*.ts"],
"files": ["./deployments.ts", "./src/utils/constants.ts", "./src/utils/dataTypes.ts"]
}
Loading