styledwind-native 0.0.4 → 0.0.5

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 (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "styledwind-native",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "A lightweight utility for applying dynamic Tailwind CSS styles in React Native",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
8
8
  "scripts": {
9
- "build": "tsc",
9
+ "build": "rimraf dist && tsc",
10
10
  "prepublishOnly": "npm run build",
11
11
  "test": "jest",
12
12
  "release:patch": "npm version patch && git push && git push --tags",
@@ -31,6 +31,7 @@
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/react": "^18.3.10",
34
+ "rimraf": "^6.0.1",
34
35
  "typescript": ">=5.6.2"
35
36
  }
36
37
  }