We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0980efa commit 214cf98Copy full SHA for 214cf98
2 files changed
.github/workflows/pkg-pr.yml
@@ -14,6 +14,7 @@ jobs:
14
cache: "pnpm"
15
- name: Install dependencies
16
run: pnpm install
17
-
+ - name: Build
18
+ run: pnpm build
19
- name: Publish preview package
20
run: pnpx pkg-pr-new publish --no-template
package.json
@@ -3,10 +3,10 @@
3
"version": "8.26.1",
4
"description": "Monitor if a component is inside the viewport, using IntersectionObserver API",
5
"type": "commonjs",
6
- "source": "./src/index.tsx",
7
- "main": "./dist/index.js",
8
- "module": "./dist/esm/index.js",
9
- "types": "./dist/index.d.ts",
+ "source": "src/index.tsx",
+ "main": "dist/index.js",
+ "module": "dist/esm/index.js",
+ "types": "dist/index.d.ts",
10
"exports": {
11
"./test-utils": {
12
"types": "./dist/test-utils.d.mts",
0 commit comments