Skip to content

Commit dde415f

Browse files
committed
5.3.0
1 parent f379880 commit dde415f

31 files changed

Lines changed: 21344 additions & 13099 deletions

.eslintignore

Lines changed: 0 additions & 39 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
[Demo](http://natrube.net/custom-scroll/index.html)
66

77
## Features:
8+
- React 19 support
89
- TypeScript support
910
- Extremely small size (11kb)
1011
- Without dependencies
1112
- Easy customization, simple api
1213
- Native OS scroll behavior
1314
- Cross browser
1415
- Animate scrollTo feature
15-
- React-sortable-tree / React-virtualized support
1616
- RTL support
1717
- Server Side Rendering support
1818
- Scroll snap support

eslint.config.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const {makeConfig} = require('@rockpack/codestyle');
2+
3+
const config = makeConfig();
4+
5+
config.push({
6+
rules: {
7+
'@typescript-eslint/no-unsafe-function-type': 'off',
8+
},
9+
});
10+
11+
module.exports = config;

example/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const { frontendCompiler } = require('@rockpack/compiler');
22
const path = require('path');
33

44
frontendCompiler({}, finalConfig => {
5-
finalConfig.output.publicPath = './';
5+
finalConfig.output.publicPath = '/';
66

77
Object.assign(finalConfig.resolve, {
88
alias: {

0 commit comments

Comments
 (0)