Skip to content

Commit

Permalink
include source files in npm package
Browse files Browse the repository at this point in the history
  • Loading branch information
mmv08 committed Jun 29, 2022
1 parent af11f14 commit b5ec379
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 2 deletions.
9 changes: 9 additions & 0 deletions .changeset/stupid-moose-destroy.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@gnosis.pm/safe-apps-react-sdk': patch
'@gnosis.pm/safe-apps-sdk': patch
'@gnosis.pm/safe-apps-wagmi': patch
'@gnosis.pm/safe-apps-web3-react': patch
'@gnosis.pm/safe-apps-web3modal': patch
---

Include source files in the npm package to make sourcemaps work
6 changes: 6 additions & 0 deletions packages/safe-apps-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
"description": "A provider wrapper of Safe Apps SDK",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "yarn rimraf dist && tsc",
"test": "echo No tests specified"
Expand Down
6 changes: 4 additions & 2 deletions packages/safe-apps-react-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
"private": false,
"version": "4.4.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"license": "MIT",
"author": "Gnosis (https://gnosis.io)",
"dependencies": {
"@gnosis.pm/safe-apps-sdk": "7.4.0"
Expand Down
2 changes: 2 additions & 0 deletions packages/safe-apps-sdk/dist/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"typings": "dist/src/index.d.ts",
"_files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/safe-apps-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"typings": "dist/src/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/safe-apps-wagmi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/safe-apps-web3-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions packages/safe-apps-web3modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
"typings": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"CHANGELOG.md",
"README.md"
],
"scripts": {
Expand Down

0 comments on commit b5ec379

Please sign in to comment.