set new domain in configs

master
Tudor Stanciu 2022-12-28 18:10:44 +02:00
parent 91e2c44233
commit 59017a5a60
3 changed files with 823 additions and 722 deletions

View File

@ -4,10 +4,10 @@
```bash ```bash
// with npm // with npm
npm i --save @flare/js-utils --registry https://toodle.ddns.net/public-node-registry npm i --save @flare/js-utils --registry https://lab.code-rove.com/public-node-registry
// with yarn // with yarn
yarn add @flare/js-utils --registry https://toodle.ddns.net/public-node-registry yarn add @flare/js-utils --registry https://lab.code-rove.com/public-node-registry
``` ```
## Usage ## Usage

1533
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,11 @@
{ {
"name": "@flare/js-utils", "name": "@flare/js-utils",
"version": "1.0.0", "version": "1.0.1",
"description": "Javascript utils", "description": "Javascript utils",
"author": { "author": {
"name": "Tudor Stanciu", "name": "Tudor Stanciu",
"email": "tudor.stanciu94@gmail.com", "email": "tudor.stanciu94@gmail.com",
"url": "https://toodle.ddns.net/tsp" "url": "https://lab.code-rove.com/tsp"
}, },
"license": "MIT", "license": "MIT",
"repository": { "repository": {
@ -31,7 +31,7 @@
"prepare": "husky install", "prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"prepush": "npm run build", "prepush": "npm run build",
"push": "cd build && npm publish --registry https://toodle.ddns.net/public-node-registry", "push": "cd build && npm publish --registry https://lab.code-rove.com/public-node-registry",
"push:major": "npm run version:major && npm run push", "push:major": "npm run version:major && npm run push",
"push:minor": "npm run version:minor && npm run push", "push:minor": "npm run version:minor && npm run push",
"push:patch": "npm run version:patch && npm run push", "push:patch": "npm run version:patch && npm run push",
@ -64,6 +64,6 @@
] ]
}, },
"publishConfig": { "publishConfig": {
"registry": "https://toodle.ddns.net/public-node-registry" "registry": "https://lab.code-rove.com/public-node-registry"
} }
} }