simpleloan_api 1.2.51 → 1.2.53

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/README.md +0 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simpleloan_api",
3
- "version": "1.2.51",
3
+ "version": "1.2.53",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/index.d.ts",
package/README.md DELETED
@@ -1,22 +0,0 @@
1
- ## Публикация в npm
2
-
3
- Требуется `npm login` (публичный реестр npmjs.com, права на пакет `simpleloan_api`).
4
-
5
- 1. Собрать проект:
6
-
7
- ```sh
8
- npm run build
9
- ```
10
-
11
- 2. Поднять версию — создаёт коммит `X.Y.Z` и тег `vX.Y.Z`:
12
- ```sh
13
- npm version patch # или minor / major
14
- ```
15
- 3. Опубликовать:
16
- ```sh
17
- npm publish
18
- ```
19
- 4. Запушить коммит и тег:
20
- ```sh
21
- git push --follow-tags
22
- ```