@ceriousdevtech/vue-cerious-scroll 1.1.1 → 1.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to vue-cerious-scroll 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.1.2] - 2026-08-23
9
+
10
+ ### Fixed
11
+ - Raised `@ceriousdevtech/cerious-scroll` to `^1.1.2`, which repairs importing this package in plain Node. Core 1.1.1 shipped an extensionless re-export in `dist/types/index.js`; Node's ESM resolver does not add file extensions, so any import of this wrapper failed with `ERR_MODULE_NOT_FOUND`. The wrapper's own bundle was never at fault — it inherited the failure through the dependency. The previous `^1.1.1` range still permitted the broken version, so the floor is raised rather than relying on resolution picking the newer release.
12
+
8
13
  ## [1.1.1] - 2026-08-23
9
14
 
10
15
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ceriousdevtech/vue-cerious-scroll",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Vue 3 bindings for CeriousScroll — virtualized lists, native tables, and Masonry grids",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -58,7 +58,7 @@
58
58
  "demo:build": "vite build --config demo/vite.config.ts"
59
59
  },
60
60
  "dependencies": {
61
- "@ceriousdevtech/cerious-scroll": "^1.1.1"
61
+ "@ceriousdevtech/cerious-scroll": "^1.1.2"
62
62
  },
63
63
  "peerDependencies": {
64
64
  "vue": "^3.3.0"