Skip to content

Commit 5a25203

Browse files
committed
fix: modify module paths in package.json
1 parent b99b4f6 commit 5a25203

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.0] - 2025-05-20
9+
10+
### Changed
11+
12+
- Modify `module` paths in `package.json`
13+
814
## [1.2.0] - 2025-05-20
915

1016
### Changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "vwo-fme-react-sdk",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "VWO React SDK for Feature Management and Experimentation",
55
"source": "lib/index.ts",
66
"main": "dist/vwo-fme-react-sdk.cjs.production.min.js",
7-
"module": "dist/vwo-fme-react-sdk.esm.js",
7+
"module": "dist/vwo-fme-react-sdk.cjs.production.min.js",
88
"browser": "dist/vwo-fme-react-sdk.umd.production.min.js",
99
"exports": {
1010
".": {
11-
"import": "./dist/vwo-fme-react-sdk.esm.js",
11+
"import": "./dist/vwo-fme-react-sdk.cjs.production.min.js",
1212
"require": "./dist/vwo-fme-react-sdk.cjs.production.min.js",
1313
"types": "./dist/index.d.ts",
1414
"browser": {

0 commit comments

Comments
 (0)