@ashtuka/react-lib 1.0.7 → 1.0.9

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": "@ashtuka/react-lib",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "main": "./dist/react-lib.umd.js",
5
5
  "module": "./dist/react-lib.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  },
14
14
  "files": [
15
15
  "dist",
16
- "scripts/postinstall.js"
16
+ "scripts"
17
17
  ],
18
18
  "publishConfig": {
19
19
  "access": "public"
@@ -24,7 +24,7 @@
24
24
  "lint": "eslint . --ext .ts,.tsx --fix",
25
25
  "format": "prettier --write .",
26
26
  "release": "npm version patch && npm publish --access public",
27
- "postinstall": "node dist/scripts/postinstall.js"
27
+ "postinstall": "node scripts/postinstall.js"
28
28
  },
29
29
  "peerDependencies": {
30
30
  "react": "^19.1.1",
@@ -3,6 +3,7 @@
3
3
  try {
4
4
  const fs = require('fs');
5
5
  const path = require('path');
6
+ console.log('call - test');
6
7
 
7
8
  // Шлях до package.json користувацького проєкту
8
9
  const projectPkgPath = path.resolve(process.cwd(), 'package.json');