procode-vs-template 1.0.0 → 1.0.1
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 +13 -0
- package/dist/factories.esm.js +991 -16177
- package/dist/factories.esm.js.map +1 -1
- package/dist/factories.js +982 -16168
- package/dist/factories.js.map +1 -1
- package/dist/index.esm.js +991 -16177
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +982 -16168
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.1] - 2025-10-08
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Resolved "util.inherits is not a function" error in browser environments
|
|
12
|
+
- Fixed rollup configuration to properly handle Node.js built-ins in browser
|
|
13
|
+
- Added util package as dependency to provide missing inherits function
|
|
14
|
+
|
|
15
|
+
### Technical
|
|
16
|
+
- Updated rollup.config.js to include browser: true option
|
|
17
|
+
- Configured commonjs plugin to handle util named exports
|
|
18
|
+
- Moved util from devDependencies to dependencies
|
|
19
|
+
- Maintained backward compatibility with existing functionality
|
|
20
|
+
|
|
8
21
|
## [1.0.0] - 2025-10-08
|
|
9
22
|
|
|
10
23
|
### Added
|