Skip to content

Commit

Permalink
0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pandanoir committed Nov 14, 2017
1 parent 4e287ac commit 5c68761
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 0.1.1
Now dist/unitary.js and dist/canvas.js are merged.

# 0.1.0

## Features
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ Demo: [Demo](http://pandanoir.net/unitaryjs/sample.html)
<meta charset="UTF-8">
<title>Sample</title>
<script src="./unitary.js"></script>
<script src="./canvas.js"></script>
<script>
const {Point, Triangle} = Unitary;
const A = new Point(30,30),
Expand Down Expand Up @@ -58,7 +57,7 @@ new Unitary.Vector(1, 1);
```

## Browser
download [./dist/unitary.js](./dist/unitary.js) and load it.
download [./dist/unitary.min.js](https://unpkg.com/unitaryjs/dist/unitary.min.js) and load it.


```html
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unitaryjs",
"version": "0.1.0",
"version": "0.1.1",
"description": "Canvas Library",
"main": "./dist/unitary.min.js",
"scripts": {
Expand All @@ -9,7 +9,8 @@
"postversion": "git push && git push --tags",
"pretest": "npm run build",
"test": "mocha -R spec",
"build": "rollup src/main.js -c -o dist/unitary.js --name Unitary && rollup src/canvas.js -c -o dist/canvas.js --name Canvas"
"build": "rollup src/main.js -c -o dist/unitary.js --name Unitary",
"build2": "rollup src/canvas.js -c -o dist/canvas.js --name Canvas"
},
"files": [
"CHANGELOG.md",
Expand Down

0 comments on commit 5c68761

Please sign in to comment.