Skip to content

Commit

Permalink
Fix tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
pateketrueke authored and Rafael Soto committed Dec 21, 2017
1 parent 53caf30 commit 0c73908
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,22 @@
"module": "src/wasap.js",
"scripts": {
"test": "eslint src",
"build:full": "tarima -Ufqe dist",
"build:min": "npm run build:full -- -OR '**:{basedir}/{name}.min.js'",
"build": "npm run build:full && npm run build:min",
"build_full": "tarima -Ufqe dist",
"build_min": "npm run build_full -- -OR '**:{basedir}/{name}.min.js'",
"build": "npm run build_full && npm run build_min",
"dev": "tarima -des"
},
"tarima": {
"src": "src",
"dest": "dist",
"bundle": true,
"public": ".",
"dest": ".",
"bundle": [
"**/*.js"
],
"rename": [
"**:{fullpath/1}"
"**/*.js:dist/{fullpath/1}",
"**/demos/**:{fullpath/1}",
"**/tests/**:{fullpath/1}"
],
"bundleOptions": {
"rollup": {
Expand Down

0 comments on commit 0c73908

Please sign in to comment.