@janiscommerce/ui-web 0.40.1 → 0.40.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/CHANGELOG.md CHANGED
@@ -7,6 +7,40 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.41.2] - 2025-05-23
11
+
12
+ ### Fixed
13
+
14
+ - main key in rollback config
15
+
16
+ ## [0.41.1] - 2025-05-23
17
+
18
+ ### Changed
19
+
20
+ - Rollback export
21
+
22
+ ### Removed
23
+
24
+ - axios library
25
+
26
+ ## [0.41.0] - 2025-05-23
27
+
28
+ ### Changed
29
+
30
+ - Updated build configuration and export setup
31
+ - Fixed dist folder configuration in rollup build
32
+ - Improved build command configuration
33
+
34
+ ### Removed
35
+
36
+ - Removed axios dependency from package.json
37
+ - Removed preinstall script functionality
38
+
39
+ ### Fixed
40
+
41
+ - Fixed export configuration in rollup build setup
42
+ - Fixed build process for better package distribution
43
+
10
44
  ## [0.40.1] - 2025-05-21
11
45
 
12
46
  ### Fixed
package/dist/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/janis-commerce/ui-web.git"
11
11
  },
12
- "version": "0.40.1",
12
+ "version": "0.40.2",
13
13
  "dependencies": {
14
14
  "@mapbox/polyline": "^1.1.1",
15
15
  "@react-google-maps/api": "2.7.0",
@@ -20,7 +20,6 @@
20
20
  "svgpath": "^2.5.0"
21
21
  },
22
22
  "peerDependencies": {
23
- "axios": "^0.27.2",
24
23
  "react": ">= 17.x",
25
24
  "react-dom": ">= 17.x",
26
25
  "styled-components": ">= 5.3.0"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@janiscommerce/ui-web",
3
- "version": "0.40.1",
3
+ "version": "0.40.2",
4
4
  "description": "",
5
5
  "main": "dist/index.umd.js",
6
6
  "exports": {
@@ -49,7 +49,6 @@
49
49
  "@storybook/node-logger": "^6.2.9",
50
50
  "@storybook/react": "^6.2.9",
51
51
  "@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
52
- "axios": "^0.27.2",
53
52
  "babel-jest": "^27.0.6",
54
53
  "babel-plugin-styled-components": "^2.0.6",
55
54
  "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
@@ -109,7 +108,6 @@
109
108
  "testEnvironment": "jsdom"
110
109
  },
111
110
  "peerDependencies": {
112
- "axios": "^0.27.2",
113
111
  "react": ">= 17.x",
114
112
  "react-dom": ">= 17.x",
115
113
  "styled-components": ">= 5.3.0"
@@ -1,11 +0,0 @@
1
- const isRootInstall = process.env.npm_lifecycle_event === 'preinstall';
2
-
3
- if (!isRootInstall) {
4
- process.exit(0); // No ejecutar si se está instalando como dependencia
5
- }
6
-
7
- if (process.env.npm_execpath.indexOf('yarn') === -1) {
8
- console.error('You must use Yarn to install dependencies:');
9
- console.error(' $ yarn install');
10
- process.exit(1);
11
- }