@crm-uz/core 1.0.1 → 1.0.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crm-uz/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Core utilities and functions for CRM application",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {
@@ -8,17 +8,17 @@
8
8
  },
9
9
  "keywords": [],
10
10
  "license": "ISC",
11
- "author":{
11
+ "author": {
12
12
  "name": "Aziz",
13
13
  "email": "argringo97@gmail.com"
14
14
  },
15
15
  "peerDependencies": {
16
- "prettier":"3.0.0"
16
+ "prettier": "3.0.0"
17
17
  },
18
18
  "dependencies": {
19
19
  "@trivago/prettier-plugin-sort-imports": "5.2.2"
20
20
  },
21
- "exports":{
22
- "prettier":"./src/prettier.config.mjs"
21
+ "exports": {
22
+ "prettier": "./src/prettier.config.mjs"
23
23
  }
24
24
  }
@@ -1,28 +0,0 @@
1
- name: Publish
2
-
3
- on:
4
- push:
5
- branches:
6
- - main
7
-
8
- jobs:
9
- publish:
10
- runs-on: ubuntu-latest
11
-
12
- steps:
13
- - name: Checkout repository
14
- uses: actions/checkout@v4
15
-
16
- - name: Set up Node.js
17
- uses: actions/setup-node@v4
18
- with:
19
- node-version: '22'
20
- registry-url: 'https://registry.npmjs.org/'
21
-
22
- - name: Install all dependencies
23
- run: npm install
24
-
25
- - name: Publish package
26
- run: npm publish
27
- env:
28
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}