Skip to content

Commit

Permalink
Merge pull request #36 from pshihn/syncgen
Browse files Browse the repository at this point in the history
Generators + Sync execution
  • Loading branch information
pshihn authored Mar 19, 2018
2 parents a047b23 + a5922dc commit 185af6e
Show file tree
Hide file tree
Showing 9 changed files with 2,836 additions and 370 deletions.
550 changes: 412 additions & 138 deletions dist/rough.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rough.min.js

Large diffs are not rendered by default.

1,913 changes: 1,913 additions & 0 deletions dist/rough.umd.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/rough.umd.min.js

Large diffs are not rendered by default.

14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"name": "roughjs",
"version": "2.0.0",
"version": "2.0.1",
"description": "Create graphics on HTML Canvas with a hand-drawn, sketchy, appearance.",
"main": "src/index.js",
"main": "dist/rough.umd.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "npm run clean && rollup src/index.js --o dist/rough.js --f iife --name \"rough\" && npm run minify",
"clean": "rm -rf dist/",
"minify": "babel-minify --mangle dist/rough.js >> dist/rough.min.js",
"build": "npm run build-d && npm run build-umd",
"build-d": "rollup src/index.js --o dist/rough.js --f iife --name \"rough\" && npm run minify-d",
"minify-d": "babel-minify dist/rough.js -o dist/rough.min.js --mangle",
"build-umd": "rollup src/index.js --o dist/rough.umd.js --f umd --name \"rough\" && npm run minify-umd",
"minify-umd": "babel-minify dist/rough.umd.js -o dist/rough.umd.min.js --mangle",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand All @@ -15,6 +18,7 @@
},
"keywords": [
"canvas",
"graphics",
"sketchy",
"hand drawn"
],
Expand Down
Loading

0 comments on commit 185af6e

Please sign in to comment.