Skip to content

Commit

Permalink
Merge pull request #99 from docknetwork/disable-mjs-build
Browse files Browse the repository at this point in the history
Disable MJS build temporarily as it has issues in certain web build systems
  • Loading branch information
cykoder authored May 7, 2020
2 parents a32fb29 + e086618 commit fc70358
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"name": "@docknetwork/sdk",
"version": "0.0.5",
"main": "index.js",
"module": "index.mjs",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/docknetwork/sdk"
Expand Down
11 changes: 6 additions & 5 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,12 @@ export default async function() {
json(),
],
input,
output: [{
dir: 'dist',
format: 'esm',
entryFileNames: '[name].mjs'
},
output: [
// {
// dir: 'dist',
// format: 'esm',
// entryFileNames: '[name].mjs'
// },
{
dir: 'dist',
format: 'cjs'
Expand Down

0 comments on commit fc70358

Please sign in to comment.