1
0
Fork 0

construction: Added second part

This commit is contained in:
Joost De Cock 2018-08-03 17:44:55 +02:00
parent 9bead1d272
commit 3a7460da1d
7 changed files with 90 additions and 47 deletions

View file

@ -0,0 +1,14 @@
import freesewing from "freesewing";
import base from "./base";
var front = {
draft: function(part) {
// prettier-ignore
let {sa, point, points, path, paths, snippet, snippets, final, paperless, macro} = freesewing.utils.shorthand(part);
macro("title", { at: points.title, nr: 1 });
return part;
}
};
export default front;