Skip to content

Commit 2581ca7

Browse files
committed
Merge pull request #134 from Microsoft/dev
Version 0.7.0
2 parents 92cc1df + ea32193 commit 2581ca7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+12108
-750
lines changed

‎archive/browser.0.7.0.maker.js‎

Lines changed: 4687 additions & 0 deletions
Large diffs are not rendered by default.

‎archive/node.0.7.0.maker.js‎

Lines changed: 4518 additions & 0 deletions
Large diffs are not rendered by default.

‎index.js‎

Lines changed: 578 additions & 142 deletions
Large diffs are not rendered by default.

‎package.json‎

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "makerjs",
3-
"version": "0.6.11",
3+
"version": "0.7.0",
44
"description": "Maker.js, a Microsoft Garage project, is a JavaScript library for creating and sharing modular line drawings for CNC and laser cutters.",
55
"main": "index.js",
66
"scripts": {
77
"compile-playground": "tsc -p playground && tsc -p playground/worker",
88
"cat-tsd": "cat target/ts/tsd-header.txt target/maker.d.ts > target/ts/makerjs.d.ts && rm target/maker.d.ts",
99
"target-node-platform": "cd target && mv maker.js js/node.maker.js && cd ..",
1010
"target-browser-platform": "cd target/js && browserify --ignore buffer -o browser.maker.js -r ./node.maker.js:makerjs && cd ../..",
11-
"build-debug": "tsc -p src",
11+
"build-debug": "tsc",
1212
"build": "tsc -p target && npm run cat-tsd && npm run target-node-platform && npm run target-browser-platform && cp target/js/node.maker.js ./index.js && npm run compile-playground && npm run versionize",
1313
"versionize": "node ./target/versionize.js",
1414
"predocs": "rm -r -f ./docs/api",
@@ -40,8 +40,7 @@
4040
"devDependencies": {
4141
"browserify": "^13.0.0",
4242
"tsd": "^0.6.1",
43-
"typedoc": "^0.3.4",
44-
"typescript": "^1.6.2"
43+
"typescript": "^1.8.2"
4544
},
4645
"dependencies": {
4746
"clone": "^1.0.2"

‎playground/export-format.js.map‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎playground/export-format.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module MakerJsPlaygroundExport {
1+
namespace MakerJsPlaygroundExport {
22

33
export enum ExportFormat {
44
Json,

‎playground/index.html‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@
5454
<script src="../src/core/paths.js"></script>
5555
<script src="../src/core/model.js"></script>
5656
<script src="../src/core/combine.js"></script>
57+
<script src="../src/core/collect.js"></script>
58+
<script src="../src/core/simplify.js"></script>
5759
<script src="../src/core/loops.js"></script>
60+
<script src="../src/core/expand.js"></script>
5861
<script src="../src/core/kit.js"></script>
5962
<script src="../src/core/exporter.js"></script>
6063
<script src="../src/core/dxf.js"></script>

‎playground/playground.js‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎playground/playground.js.map‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎playground/playground.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module MakerJsPlayground {
1+
namespace MakerJsPlayground {
22

33
//classes
44

0 commit comments

Comments
 (0)