1
0
Fork 0

🚧 Added verdaccio as mock local registry

This commit is contained in:
Joost De Cock 2019-04-20 15:36:31 +02:00
parent d5ff7ce9d9
commit daf65326ae
104 changed files with 1325 additions and 164 deletions

View file

@ -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"

View file

@ -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": {},