🚧 Added verdaccio as mock local registry
This commit is contained in:
parent
d5ff7ce9d9
commit
daf65326ae
104 changed files with 1325 additions and 164 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -7,6 +7,9 @@ node_modules
|
|||
# build
|
||||
dist
|
||||
|
||||
# Mock registry (verdaccio)
|
||||
.registry
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env
|
||||
|
|
7
breaking.md
Normal file
7
breaking.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
These are the breaking changes after switching to the monorepo:
|
||||
|
||||
- freesewing is now @freesewing/core
|
||||
- @freesewing/patterns no longer includes @freesewing/examples (the pattern holding examples for the documentation)
|
||||
- @freesewing/patterns no longer includes @freesewing/plugin-bundle (our bundle of build-time plugins)
|
||||
FIXME: Won't this break things, and if so don't we need all plugins patterns depend on (like plugin-butons or plugin-bust)
|
||||
- We no longer build pure browser (IIFE) versions, only node (CommonJS) and module (ES) versions
|
|
@ -9,3 +9,70 @@ _types:
|
|||
aaron:
|
||||
peer:
|
||||
"@freesewing/brian": "^{{version}}"
|
||||
bent:
|
||||
peer:
|
||||
"@freesewing/brian": "^{{version}}"
|
||||
carlita:
|
||||
peer:
|
||||
"@freesewing/bent": "^{{version}}"
|
||||
"@freesewing/carlton": "^{{version}}"
|
||||
"@freesewing/plugin-bust": "^{{version}}"
|
||||
"@freesewing/plugin-buttons": "^{{version}}"
|
||||
carlton:
|
||||
peer:
|
||||
"@freesewing/bent": "^{{version}}"
|
||||
"@freesewing/plugin-buttons": "^{{version}}"
|
||||
core:
|
||||
_:
|
||||
"bezier-js": "^2.2.13"
|
||||
"bin-pack": "1.0.2"
|
||||
"hooks": "^0.3.2"
|
||||
create-freesewing-pattern:
|
||||
_:
|
||||
"chalk": "^2.4.2"
|
||||
"commander": "^2.19.0"
|
||||
"conf": "^2.2.0"
|
||||
"cp-file": "^6.0.0"
|
||||
"execa": "^1.0.0"
|
||||
"git-config-path": "^2.0.0"
|
||||
"github-username": "^4.1.0"
|
||||
"globby": "^9.0.0"
|
||||
"handlebars": "^4.1.0"
|
||||
"inquirer": "^6.2.2"
|
||||
"make-dir": "^2.0.0"
|
||||
"ora": "^3.1.0"
|
||||
"p-each-series": "^1.0.0"
|
||||
"parse-git-config": "^3.0.0"
|
||||
"validate-npm-package-name": "^3.0.0"
|
||||
"which": "^1.3.1"
|
||||
mui-theme:
|
||||
peer:
|
||||
"@material-ui/core": "^3.9.3"
|
||||
"react": "^16.3.0"
|
||||
"react-dom": "^16.3.0"
|
||||
patterns:
|
||||
_:
|
||||
"@freesewing/aaron": "^{{version}}"
|
||||
"@freesewing/bent": "^{{version}}"
|
||||
"@freesewing/brian": "^{{version}}"
|
||||
"@freesewing/bruce": "^{{version}}"
|
||||
"@freesewing/carlita": "^{{version}}"
|
||||
"@freesewing/carlton": "^{{version}}"
|
||||
"@freesewing/cathrin": "^{{version}}"
|
||||
"@freesewing/florent": "^{{version}}"
|
||||
"@freesewing/huey": "^{{version}}"
|
||||
"@freesewing/hugo": "^{{version}}"
|
||||
"@freesewing/jaeger": "0.2.1"
|
||||
"@freesewing/shin": "^{{version}}"
|
||||
"@freesewing/simon": "^{{version}}"
|
||||
"@freesewing/sven": "^{{version}}"
|
||||
"@freesewing/tamiko": "^{{version}}"
|
||||
"@freesewing/trayvon": "^{{version}}"
|
||||
"@freesewing/wahid": "^{{version}}"
|
||||
workbench:
|
||||
_:
|
||||
"@freesewing/core": "^{{version}}"
|
||||
"@freesewing/i18n": "^{{version}}"
|
||||
"@freesewing/plugin-theme": "^{{version}}"
|
||||
"react-intl": "^2.8.0"
|
||||
"typeface-roboto-condensed": "^0.0.54"
|
||||
|
|
|
@ -6,3 +6,10 @@ noRollup:
|
|||
- mui-theme
|
||||
- plugin-theme
|
||||
- workbench
|
||||
extraPackageJson:
|
||||
create-freesewing-pattern:
|
||||
"reveal": true,
|
||||
"bin":
|
||||
"create-freesewing-pattern": "index.js"
|
||||
"engines":
|
||||
"npm": ">=5"
|
||||
|
|
|
@ -1,16 +1,23 @@
|
|||
_:
|
||||
clean: "rimraf ../../dist/{{name}}"
|
||||
nodebuild: "rollup -c -o ../../dist/{{name}}/index.js -f cjs"
|
||||
modulebuild: "rollup -c -o ../../dist/{{name}}/index.mjs -f es"
|
||||
build: "npm run clean && npm run nodebuild && npm run modulebuild"
|
||||
test: "echo \"{{name}}: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
pubtest: "npm publish --registry http://localhost:6662"
|
||||
_types:
|
||||
pattern:
|
||||
clean: "rimraf ../../dist/{{name}}"
|
||||
nodebuild: "rollup -c -o ../../dist/{{name}}/index.js -f cjs"
|
||||
modulebuild: "rollup -c -o ../../dist/{{name}}/index.mjs -f es"
|
||||
build: "npm run clean && npm run nodebuild && npm run modulebuild"
|
||||
test: "echo \"{{name}}: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
plugin:
|
||||
clean: "rimraf ../../dist/{{name}}"
|
||||
nodebuild: "rollup -c -o ../../dist/{{name}}/index.js -f cjs"
|
||||
modulebuild: "rollup -c -o ../../dist/{{name}}/index.mjs -f es"
|
||||
build: "npm run clean && npm run nodebuild && npm run modulebuild"
|
||||
test: "echo \"{{name}}: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
patterns:
|
||||
plugins:
|
||||
components:
|
||||
test: "echo \"{{name}}: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
build: "echo \"{{name}}: No build command available.\" && exit 0"
|
||||
core:
|
||||
test: "nyc mocha tests/*.test.js"
|
||||
report: "nyc report --reporter=html mocha --compilers js:babel-core/register tests/*.test.js"
|
||||
coverage: "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
||||
create-freesewing-pattern:
|
||||
test: "ava -v && standard *.js lib/*.js"
|
||||
workbench:
|
||||
test: "cross-env CI=1 react-scripts test --env=jsdom"
|
||||
test:watch: "react-scripts test --env=jsdom"
|
||||
|
||||
|
|
22
config/verdaccio.yaml
Normal file
22
config/verdaccio.yaml
Normal file
|
@ -0,0 +1,22 @@
|
|||
storage: ./storage
|
||||
uplinks:
|
||||
npmjs:
|
||||
url: https://registry.npmjs.org/
|
||||
packages:
|
||||
'**':
|
||||
# This is an ephemeral registry used for testing, so we allow all users
|
||||
# (including non-authenticated users) to read and publish all packages
|
||||
access: $all
|
||||
publish: $all
|
||||
logs:
|
||||
- {type: stdout, format: pretty, level: http}
|
||||
web:
|
||||
enable: true
|
||||
title: Freesewing mock registry
|
||||
logo: "/-/static/logo.svg"
|
||||
gravatar: false
|
||||
scope:
|
||||
publish:
|
||||
allow_offline: true
|
||||
listen:
|
||||
- localhost:6662
|
76
media/logo-emblem-dark.svg
Normal file
76
media/logo-emblem-dark.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 18 KiB |
27
nohup.out
Normal file
27
nohup.out
Normal file
|
@ -0,0 +1,27 @@
|
|||
warn --- config file - /home/joost/.verdaccio/config.yaml
|
||||
warn --- Plugin successfully loaded: htpasswd
|
||||
warn --- http address - http://localhost:4873/ - verdaccio/3.11.6
|
||||
http <-- 200, user: null(127.0.0.1), req: 'GET /', bytes: 0/465
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/manifest.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/0.style.b3995fa65af1af21a5da.css', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/2.style.aa6da19a0a1767e8660a.css', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/1.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/6.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/4.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/4.style.48a69f37b9ef5242fccb.css', bytes: 0/0
|
||||
http <-- 200, user: null(127.0.0.1), req: 'GET /-/verdaccio/logo', bytes: 0/65
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/packages', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/manifest.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/vendors.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/main.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/0.style.b3995fa65af1af21a5da.css', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/2.style.aa6da19a0a1767e8660a.css', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/1.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/6.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/4.3ca3d9f201595bb1a872.js', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/static/4.style.48a69f37b9ef5242fccb.css', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/logo', bytes: 0/0
|
||||
http <-- 304, user: null(127.0.0.1), req: 'GET /-/verdaccio/packages', bytes: 0/0
|
|
@ -97,7 +97,8 @@
|
|||
"rollup-plugin-url": "2.2.1",
|
||||
"rollup-plugin-yaml": "1.1.0",
|
||||
"standard": "^12.0.1",
|
||||
"uglifycss": "0.0.29"
|
||||
"uglifycss": "0.0.29",
|
||||
"verdaccio": "3.11.6"
|
||||
},
|
||||
"dependencies": {
|
||||
"@freesewing/aaron": "file:packages/aaron",
|
||||
|
@ -118,7 +119,7 @@
|
|||
"@freesewing/jaeger": "file:packages/jaeger",
|
||||
"@freesewing/models": "file:packages/models",
|
||||
"@freesewing/mui-theme": "file:packages/mui-theme",
|
||||
"@freesewing/patterns": "file:packages/pattern-bundle",
|
||||
"@freesewing/patterns": "file:packages/patterns",
|
||||
"@freesewing/plugin-banner": "file:packages/plugin-banner",
|
||||
"@freesewing/plugin-bundle": "file:packages/plugin-bundle",
|
||||
"@freesewing/plugin-bust": "file:packages/plugin-bust",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/aaron"
|
||||
title="@freesewing/aaron on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/aaron/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/aaron/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"aaron: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"aaron: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/bent"
|
||||
title="@freesewing/bent on NPM"
|
||||
|
|
|
@ -24,14 +24,14 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/bent/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/bent/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"bent: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"bent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
"@freesewing/plugin-bundle": "^0.33.0"
|
||||
"@freesewing/plugin-bundle": "^0.33.0",
|
||||
"@freesewing/brian": "^0.33.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"../../dist/packages/bent/*",
|
||||
"README.md",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/brian"
|
||||
title="@freesewing/brian on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/brian/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/brian/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"brian: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"brian: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/bruce"
|
||||
title="@freesewing/bruce on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/bruce/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/bruce/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"bruce: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"bruce: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/carlita"
|
||||
title="@freesewing/carlita on NPM"
|
||||
|
|
|
@ -24,14 +24,17 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/carlita/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/carlita/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"carlita: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"carlita: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
"@freesewing/plugin-bundle": "^0.33.0"
|
||||
"@freesewing/plugin-bundle": "^0.33.0",
|
||||
"@freesewing/bent": "^0.33.0",
|
||||
"@freesewing/carlton": "^0.33.0",
|
||||
"@freesewing/plugin-bust": "^0.33.0",
|
||||
"@freesewing/plugin-buttons": "^0.33.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"../../dist/packages/carlita/*",
|
||||
"README.md",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/carlton"
|
||||
title="@freesewing/carlton on NPM"
|
||||
|
|
|
@ -24,14 +24,15 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/carlton/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/carlton/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"carlton: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"carlton: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
"@freesewing/plugin-bundle": "^0.33.0"
|
||||
"@freesewing/plugin-bundle": "^0.33.0",
|
||||
"@freesewing/bent": "^0.33.0",
|
||||
"@freesewing/plugin-buttons": "^0.33.0"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"files": [
|
||||
"../../dist/packages/carlton/*",
|
||||
"README.md",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/cathrin"
|
||||
title="@freesewing/cathrin on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/cathrin/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/cathrin/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"cathrin: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"cathrin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/components"
|
||||
title="@freesewing/components on NPM"
|
||||
|
|
|
@ -13,8 +13,12 @@
|
|||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/components",
|
||||
"nodebuild": "rollup -c -o ../../dist/components/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/components/index.mjs -f es",
|
||||
"build": "echo \"components: No build command available.\" && exit 0",
|
||||
"test": "echo \"components: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"build": "echo \"components: No build command available.\" && exit 0"
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/core"
|
||||
title="@freesewing/core on NPM"
|
||||
|
|
|
@ -20,10 +20,21 @@
|
|||
],
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/core",
|
||||
"nodebuild": "rollup -c -o ../../dist/core/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/core/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "nyc mocha tests/*.test.js",
|
||||
"pubtest": "npm publish --registry http://localhost:6662",
|
||||
"report": "nyc report --reporter=html mocha --compilers js:babel-core/register tests/*.test.js",
|
||||
"coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov"
|
||||
},
|
||||
"dependencies": {
|
||||
"bezier-js": "^2.2.13",
|
||||
"bin-pack": "1.0.2",
|
||||
"hooks": "^0.3.2"
|
||||
},
|
||||
"files": [
|
||||
"../../dist/packages/core/*",
|
||||
"README.md",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/create-freesewing-pattern"
|
||||
title="create-freesewing-pattern on NPM"
|
||||
|
|
|
@ -14,10 +14,32 @@
|
|||
],
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/create-freesewing-pattern",
|
||||
"nodebuild": "rollup -c -o ../../dist/create-freesewing-pattern/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/create-freesewing-pattern/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "ava -v && standard *.js lib/*.js",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"dependencies": {
|
||||
"chalk": "^2.4.2",
|
||||
"commander": "^2.19.0",
|
||||
"conf": "^2.2.0",
|
||||
"cp-file": "^6.0.0",
|
||||
"execa": "^1.0.0",
|
||||
"git-config-path": "^2.0.0",
|
||||
"github-username": "^4.1.0",
|
||||
"globby": "^9.0.0",
|
||||
"handlebars": "^4.1.0",
|
||||
"inquirer": "^6.2.2",
|
||||
"make-dir": "^2.0.0",
|
||||
"ora": "^3.1.0",
|
||||
"p-each-series": "^1.0.0",
|
||||
"parse-git-config": "^3.0.0",
|
||||
"validate-npm-package-name": "^3.0.0",
|
||||
"which": "^1.3.1"
|
||||
},
|
||||
"files": [
|
||||
"../../dist/packages/create-freesewing-pattern/*",
|
||||
"README.md",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/css-theme"
|
||||
title="@freesewing/css-theme on NPM"
|
||||
|
|
|
@ -15,7 +15,14 @@
|
|||
],
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {},
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/css-theme",
|
||||
"nodebuild": "rollup -c -o ../../dist/css-theme/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/css-theme/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"css-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/examples"
|
||||
title="@freesewing/examples on NPM"
|
||||
|
|
|
@ -19,7 +19,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/examples/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/examples/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"examples: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"examples: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/florent"
|
||||
title="@freesewing/florent on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/florent/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/florent/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"florent: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"florent: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/huey"
|
||||
title="@freesewing/huey on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/huey/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/huey/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"huey: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"huey: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/hugo"
|
||||
title="@freesewing/hugo on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/hugo/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/hugo/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"hugo: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"hugo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/i18n"
|
||||
title="@freesewing/i18n on NPM"
|
||||
|
|
|
@ -16,7 +16,14 @@
|
|||
],
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {},
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/i18n",
|
||||
"nodebuild": "rollup -c -o ../../dist/i18n/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/i18n/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/jaeger"
|
||||
title="@freesewing/jaeger on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/jaeger/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/jaeger/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"jaeger: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"jaeger: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/models"
|
||||
title="@freesewing/models on NPM"
|
||||
|
|
|
@ -16,7 +16,14 @@
|
|||
],
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {},
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/models",
|
||||
"nodebuild": "rollup -c -o ../../dist/models/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/models/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"models: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/mui-theme"
|
||||
title="@freesewing/mui-theme on NPM"
|
||||
|
|
|
@ -14,10 +14,19 @@
|
|||
],
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/mui-theme",
|
||||
"nodebuild": "rollup -c -o ../../dist/mui-theme/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/mui-theme/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"mui-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@material-ui/core": "^3.9.3",
|
||||
"react": "^16.3.0",
|
||||
"react-dom": "^16.3.0"
|
||||
},
|
||||
"files": [
|
||||
"../../dist/packages/mui-theme/*",
|
||||
"README.md",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/patterns"
|
||||
title="@freesewing/patterns on NPM"
|
||||
|
|
|
@ -19,10 +19,33 @@
|
|||
],
|
||||
"main": "dist/index.js",
|
||||
"module": "dist/index.mjs",
|
||||
"scripts": {},
|
||||
"peerDependencies": {},
|
||||
"dependencies": {},
|
||||
"devDependencies": {},
|
||||
"scripts": {
|
||||
"clean": "rimraf ../../dist/patterns",
|
||||
"nodebuild": "rollup -c -o ../../dist/patterns/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/patterns/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"patterns: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"dependencies": {
|
||||
"@freesewing/aaron": "^0.33.0",
|
||||
"@freesewing/bent": "^0.33.0",
|
||||
"@freesewing/brian": "^0.33.0",
|
||||
"@freesewing/bruce": "^0.33.0",
|
||||
"@freesewing/carlita": "^0.33.0",
|
||||
"@freesewing/carlton": "^0.33.0",
|
||||
"@freesewing/cathrin": "^0.33.0",
|
||||
"@freesewing/florent": "^0.33.0",
|
||||
"@freesewing/huey": "^0.33.0",
|
||||
"@freesewing/hugo": "^0.33.0",
|
||||
"@freesewing/jaeger": "0.2.1",
|
||||
"@freesewing/shin": "^0.33.0",
|
||||
"@freesewing/simon": "^0.33.0",
|
||||
"@freesewing/sven": "^0.33.0",
|
||||
"@freesewing/tamiko": "^0.33.0",
|
||||
"@freesewing/trayvon": "^0.33.0",
|
||||
"@freesewing/wahid": "^0.33.0"
|
||||
},
|
||||
"files": [
|
||||
"../../dist/packages/patterns/*",
|
||||
"README.md",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-banner"
|
||||
title="@freesewing/plugin-banner on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-banner/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-banner/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-banner: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-banner: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-bundle"
|
||||
title="@freesewing/plugin-bundle on NPM"
|
||||
|
|
|
@ -25,7 +25,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-bundle/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-bundle/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-bundle: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-bundle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-bust"
|
||||
title="@freesewing/plugin-bust on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-bust/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-bust/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-bust: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-bust: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-buttons"
|
||||
title="@freesewing/plugin-buttons on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-buttons/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-buttons/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-buttons: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-buttons: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-cutonfold"
|
||||
title="@freesewing/plugin-cutonfold on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-cutonfold/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-cutonfold/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-cutonfold: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-cutonfold: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-debug"
|
||||
title="@freesewing/plugin-debug on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-debug/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-debug/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-debug: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-debug: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-designer"
|
||||
title="@freesewing/plugin-designer on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-designer/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-designer/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-designer: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-designer: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-dimension"
|
||||
title="@freesewing/plugin-dimension on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-dimension/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-dimension/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-dimension: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-dimension: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-flip"
|
||||
title="@freesewing/plugin-flip on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-flip/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-flip/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-flip: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-flip: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-grainline"
|
||||
title="@freesewing/plugin-grainline on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-grainline/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-grainline/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-grainline: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-grainline: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-i18n"
|
||||
title="@freesewing/plugin-i18n on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-i18n/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-i18n/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-i18n: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-logo"
|
||||
title="@freesewing/plugin-logo on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-logo/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-logo/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-logo: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-logo: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-round"
|
||||
title="@freesewing/plugin-round on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-round/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-round/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-round: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-round: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-scalebox"
|
||||
title="@freesewing/plugin-scalebox on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-scalebox/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-scalebox/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-scalebox: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-scalebox: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-sprinkle"
|
||||
title="@freesewing/plugin-sprinkle on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-sprinkle/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-sprinkle/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-sprinkle: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-sprinkle: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-svgattr"
|
||||
title="@freesewing/plugin-svgattr on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-svgattr/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-svgattr/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-svgattr: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-svgattr: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-theme"
|
||||
title="@freesewing/plugin-theme on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-theme/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-theme/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-theme: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-title"
|
||||
title="@freesewing/plugin-title on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-title/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-title/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-title: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-title: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/plugin-validate"
|
||||
title="@freesewing/plugin-validate on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/plugin-validate/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/plugin-validate/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"plugin-validate: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"plugin-validate: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/shin"
|
||||
title="@freesewing/shin on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/shin/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/shin/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"shin: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"shin: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/simon"
|
||||
title="@freesewing/simon on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/simon/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/simon/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"simon: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"simon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/sven"
|
||||
title="@freesewing/sven on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/sven/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/sven/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"sven: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"sven: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/tamiko"
|
||||
title="@freesewing/tamiko on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/tamiko/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/tamiko/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"tamiko: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"tamiko: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/trayvon"
|
||||
title="@freesewing/trayvon on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/trayvon/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/trayvon/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"trayvon: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"trayvon: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/wahid"
|
||||
title="@freesewing/wahid on NPM"
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"nodebuild": "rollup -c -o ../../dist/wahid/index.js -f cjs",
|
||||
"modulebuild": "rollup -c -o ../../dist/wahid/index.mjs -f es",
|
||||
"build": "npm run clean && npm run nodebuild && npm run modulebuild",
|
||||
"test": "echo \"wahid: No tests configured. Perhaps you'd like to do this?\" && exit 0"
|
||||
"test": "echo \"wahid: No tests configured. Perhaps you'd like to do this?\" && exit 0",
|
||||
"pubtest": "npm publish --registry http://localhost:6662"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@freesewing/core": "^0.33.0",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
> For all questions, please come say hello in [our chatroom on Gitter](https://gitter.im/).
|
||||
|
||||
<p align="center"><a title="Go to freesewing.org" href="https://freesewing.org/"><img src="https://freesewing.org/img/logo/black.svg" align="center" width="150px" alt="Freesewing logo"/></a></p>
|
||||
<p>FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align="center">FreeSewing is a free and open source library for made-to-measure sewing patterns</p>
|
||||
<p align='center'><a
|
||||
href="https://www.npmjs.com/package/@freesewing/workbench"
|
||||
title="@freesewing/workbench on NPM"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue