Skip to content

Commit 1b2aced

Browse files
committed
fix: build
1 parent 6035f50 commit 1b2aced

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ jobs:
4646

4747
- name: Build
4848
run: pnpm build
49-
https://github.com/jscottsmith/react-scroll-parallax/actions/runs/18050399519/job/51371003107?pr=279#step:9:1

jest-setup.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
import '@testing-library/jest-dom';
33

44
// Mock ResizeObserver for tests
5-
(global as any).ResizeObserver = jest.fn().mockImplementation(() => ({
5+
declare const global: any;
6+
global.ResizeObserver = jest.fn().mockImplementation(() => ({
67
observe: jest.fn(),
78
unobserve: jest.fn(),
89
disconnect: jest.fn(),

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { EasingPreset, EffectNumber, EffectString } from 'parallax-controller';
1+
export { EasingPreset } from 'parallax-controller';
22

33
export * from './components/Parallax';
44
export * from './components/ParallaxBanner';

0 commit comments

Comments
 (0)