Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xinaesthete committed Jan 10, 2020
1 parent 6eb0991 commit 5482a0c
Show file tree
Hide file tree
Showing 5 changed files with 313 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,5 @@ dist

# TernJS port file
.tern-port

output/*
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("hello world")
275 changes: 275 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "rollup-bug",
"version": "1.0.0",
"description": "testing plugin-multi-entry",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xinaesthete/rollup-bug.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/xinaesthete/rollup-bug/issues"
},
"homepage": "https://github.com/xinaesthete/rollup-bug#readme",
"devDependencies": {
"@rollup/plugin-multi-entry": "^3.0.0",
"rollup": "^1.29.0"
}
}
11 changes: 11 additions & 0 deletions rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import multi from '@rollup/plugin-multi-entry'

export default {
input: 'index.js',
plugins: [
multi() //this causes a failure in some cases (Windows related?)
],
output: {
dir: 'dist'
}
}

0 comments on commit 5482a0c

Please sign in to comment.