Skip to content

Commit

Permalink
Avoid breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
noisekit committed Aug 5, 2022
1 parent 98a45f7 commit 78fd86f
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 30 deletions.
8 changes: 4 additions & 4 deletions packages/contracts-interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"version": "2.74.2",
"description": "A library for interacting with Synthetix smart contracts",
"source": "./src/index.ts",
"main": "./build/src/index.js",
"module": "./build/src/index.js",
"browser": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"main": "./build/node/src/index.js",
"module": "./build/node/src/index.js",
"browser": "./build/node/src/index.js",
"types": "./build/node/src/index.d.ts",
"files": [
"build",
"src"
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts-interface/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"declaration": true,
"declarationMap": true,
"module": "commonjs",
"outDir": "./build/src"
"outDir": "./build/node/src"
},
"include": ["src"]
}
8 changes: 4 additions & 4 deletions packages/optimism-networks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"version": "2.74.2",
"description": "Javascript library for handling networks on Optimism Layer 2",
"source": "./src/index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"browser": "./build/index.js",
"types": "./build/index.d.ts",
"main": "./build/node/index.js",
"module": "./build/node/index.js",
"browser": "./build/node/index.js",
"types": "./build/node/index.d.ts",
"files": [
"build",
"src"
Expand Down
2 changes: 1 addition & 1 deletion packages/optimism-networks/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"declaration": true,
"declarationMap": true,
"module": "commonjs",
"outDir": "./build"
"outDir": "./build/node"
},
"include": ["src"]
}
8 changes: 4 additions & 4 deletions packages/providers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"version": "2.74.4",
"description": "Javascript library for handling providers on Layer 1 & Optimism Layer 2",
"source": "./src/index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"browser": "./build/index.js",
"types": "./build/index.d.ts",
"main": "./build/node/index.js",
"module": "./build/node/index.js",
"browser": "./build/node/index.js",
"types": "./build/node/index.d.ts",
"files": [
"build",
"src"
Expand Down
2 changes: 1 addition & 1 deletion packages/providers/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"declaration": true,
"declarationMap": true,
"module": "commonjs",
"outDir": "./build"
"outDir": "./build/node"
},
"include": ["src"]
}
8 changes: 4 additions & 4 deletions packages/queries/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"version": "2.74.7",
"description": "react-query for pulling synthetix data in react interfaces",
"source": "./src/index.ts",
"main": "./build/src/index.js",
"module": "./build/src/index.js",
"browser": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"main": "./build/node/src/index.js",
"module": "./build/node/src/index.js",
"browser": "./build/node/src/index.js",
"types": "./build/node/src/index.d.ts",
"files": [
"build",
"src"
Expand Down
2 changes: 1 addition & 1 deletion packages/queries/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"declarationMap": true,
"baseUrl": ".",
"module": "commonjs",
"outDir": "./build"
"outDir": "./build/node"
},
"include": ["src"]
}
8 changes: 4 additions & 4 deletions packages/transaction-notifier/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"version": "2.74.5",
"description": "Javascript library for handling networks on Optimism Layer 2",
"source": "./src/index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"browser": "./build/index.js",
"types": "./build/index.d.ts",
"main": "./build/node/index.js",
"module": "./build/node/index.js",
"browser": "./build/node/index.js",
"types": "./build/node/index.d.ts",
"files": [
"build",
"src"
Expand Down
2 changes: 1 addition & 1 deletion packages/transaction-notifier/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"declaration": true,
"declarationMap": true,
"module": "commonjs",
"outDir": "./build"
"outDir": "./build/node"
},
"include": ["src"]
}
8 changes: 4 additions & 4 deletions packages/wei/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"version": "2.74.2",
"description": "Convenient BigNumber library for web3",
"source": "./src/index.ts",
"main": "./build/index.js",
"module": "./build/index.js",
"browser": "./build/index.js",
"types": "./build/index.d.ts",
"main": "./build/node/index.js",
"module": "./build/node/index.js",
"browser": "./build/node/index.js",
"types": "./build/node/index.d.ts",
"files": [
"build",
"src"
Expand Down
2 changes: 1 addition & 1 deletion packages/wei/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"declaration": true,
"declarationMap": true,
"module": "commonjs",
"outDir": "./build"
"outDir": "./build/node"
},
"include": ["src"]
}

0 comments on commit 78fd86f

Please sign in to comment.