using rollup

pull/1/head
Adam Pash 8 years ago
parent c2a8edee97
commit b349a1eac5

@ -0,0 +1,17 @@
{
"name": "js_read",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
},
"dependencies": {
"rollup": "^0.34.10"
}
}

@ -0,0 +1,5 @@
export default {
entry: 'index.js',
format: 'cjs',
dest: 'bundle.js' // equivalent to --output
};
Loading…
Cancel
Save