react-robot-vacuum 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/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ "use client";
1
2
  "use strict";
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
package/dist/index.mjs CHANGED
@@ -1,3 +1,5 @@
1
+ "use client";
2
+
1
3
  // src/RobotVacuum/RobotVacuum.tsx
2
4
  import {
3
5
  forwardRef,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-robot-vacuum",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "An animated React component featuring a robot vacuum that autonomously cleans your page by collecting dirt particles",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -18,7 +18,7 @@
18
18
  "README.md"
19
19
  ],
20
20
  "scripts": {
21
- "build": "tsup src/index.tsx --format cjs,esm --dts --external react --external react-dom && cp src/RobotVacuum/RobotVacuum.module.css dist/",
21
+ "build": "tsup && cp src/RobotVacuum/RobotVacuum.module.css dist/",
22
22
  "dev": "tsup src/index.tsx --format cjs,esm --dts --watch",
23
23
  "vite:dev": "vite",
24
24
  "vite:build": "vite build",
@@ -66,5 +66,8 @@
66
66
  "typescript": "^5.3.0",
67
67
  "typescript-eslint": "^8.51.0",
68
68
  "vite": "^7.3.0"
69
+ },
70
+ "dependencies": {
71
+ "react-robot-vacuum": "^1.0.0"
69
72
  }
70
73
  }