bb-api-platforma 0.1.168 → 0.1.172
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -7
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -6,13 +6,6 @@ Module package for working with API of BetBooster platform.
|
|
|
6
6
|
|
|
7
7
|
To install the "bb-api-platforma" package, run the following command:
|
|
8
8
|
|
|
9
|
-
```bash
|
|
10
|
-
npm install gitlab:betseller/bb-api-platforma
|
|
11
|
-
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
It is possible to use the command to update the package:
|
|
15
|
-
|
|
16
9
|
```bash
|
|
17
10
|
npm install bb-api-platforma
|
|
18
11
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bb-api-platforma",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.172",
|
|
4
4
|
"description": "API module for BetBooster Platform",
|
|
5
5
|
"productName": "BetBooster Platform API",
|
|
6
6
|
"author": "Tomy Bet <tomybet.com@gmail.com>",
|
|
@@ -12,9 +12,10 @@
|
|
|
12
12
|
"build": "rimraf ./dist && tsc --project tsconfig.build.json",
|
|
13
13
|
"build:compress": "npm run build && terser --compress --mangle --source-map \"url='BetBoosterApi.min.js.map'\" --output dist/BetBoosterApi.min.js dist/BetBoosterApi.js",
|
|
14
14
|
"build:types": "dts-bundle-generator -o dist/BetBoosterApi.min.d.ts src/BetBoosterApi.ts",
|
|
15
|
-
"
|
|
15
|
+
"build:all": "npm run build:compress && npm run build:types",
|
|
16
|
+
"publish": "npm run version:patch && npm run build:all && git add . && git commit -m \"Release v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\") && git push --set-upstream origin main && git push --tags",
|
|
16
17
|
"version:patch": "npm --no-git-tag-version version patch && node src/version.js",
|
|
17
|
-
"
|
|
18
|
+
"release_npm": "git add . && git commit -m \"Release v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\") && git push --set-upstream origin main && git push --tags",
|
|
18
19
|
"dev": "npx nodemon",
|
|
19
20
|
"doc": "rimraf ./docs && typedoc",
|
|
20
21
|
"test": "echo \"Error: no test specified {%1} \" && exit 1"
|