tailwind-hyperclay 0.1.11 → 0.1.13

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/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ # Changelog
2
+
3
+ ## [0.1.13] - 2026-01-12
4
+
5
+ ### Changed
6
+ - Improved module resolution by determining base path dynamically
7
+ - Removed release.sh script
8
+
9
+
package/index.js CHANGED
@@ -1,6 +1,13 @@
1
1
  const { readFile, writeFile } = require('fs/promises');
2
2
  const path = require('path');
3
3
 
4
+ const DEFAULT_CANDIDATES = [
5
+ 'hidden', 'block', 'flex',
6
+ 'invisible', 'visible',
7
+ 'sr-only', 'not-sr-only',
8
+ 'fixed', 'absolute'
9
+ ];
10
+
4
11
  let compile;
5
12
  try {
6
13
  const tw = require('tailwindcss');
@@ -44,11 +51,21 @@ async function compileTailwind(html) {
44
51
  @plugin "@tailwindcss/forms" { strategy: "class"; }
45
52
  `;
46
53
 
47
- // Use process.resourcesPath in Electron (production), otherwise __dirname
48
- // This ensures we don't rely on process.cwd() which is '/' when double-clicking the app
49
- const defaultBase = process.versions.electron && process.resourcesPath
50
- ? path.join(process.resourcesPath, 'app.asar.unpacked', 'node_modules')
51
- : __dirname;
54
+ // Determine base path for module resolution
55
+ // - In packaged Electron apps: use app.asar.unpacked/node_modules
56
+ // - In Electron dev mode or Node.js: use parent of __dirname (node_modules)
57
+ let defaultBase = path.join(__dirname, '..'); // Default: node_modules directory
58
+
59
+ if (process.versions.electron && process.resourcesPath) {
60
+ const asarUnpackedPath = path.join(process.resourcesPath, 'app.asar.unpacked', 'node_modules');
61
+ // Only use ASAR path if it actually exists (i.e., packaged app, not dev mode)
62
+ try {
63
+ require('fs').accessSync(asarUnpackedPath);
64
+ defaultBase = asarUnpackedPath;
65
+ } catch {
66
+ // Not a packaged app or path doesn't exist, use default
67
+ }
68
+ }
52
69
 
53
70
  const compiler = await compile(inputCSS, {
54
71
  loadStylesheet: async (id, base) => {
@@ -89,7 +106,7 @@ async function compileTailwind(html) {
89
106
  });
90
107
 
91
108
  const candidates = extractCandidates(html);
92
- const css = compiler.build(candidates);
109
+ const css = compiler.build([...DEFAULT_CANDIDATES, ...candidates]);
93
110
 
94
111
  return css;
95
112
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tailwind-hyperclay",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "On-save Tailwind CSS generator for Hyperclay",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,248 +0,0 @@
1
- #!/bin/bash
2
- set -e # Exit on error
3
-
4
- # tailwind-hyperclay Automated Release Script
5
-
6
- echo "╔════════════════════════════════════════╗"
7
- echo "║ tailwind-hyperclay Release ║"
8
- echo "╚════════════════════════════════════════╝"
9
- echo ""
10
-
11
- # Color codes
12
- RED='\033[0;31m'
13
- GREEN='\033[0;32m'
14
- YELLOW='\033[1;33m'
15
- BLUE='\033[0;34m'
16
- NC='\033[0m' # No Color
17
-
18
- # Helper functions
19
- info() { echo -e "${BLUE}ℹ${NC} $1"; }
20
- success() { echo -e "${GREEN}✓${NC} $1"; }
21
- warn() { echo -e "${YELLOW}⚠${NC} $1"; }
22
- error() { echo -e "${RED}✗${NC} $1"; }
23
-
24
- # Check if we're in the right directory
25
- if [ ! -f "package.json" ] || ! grep -q '"name": "tailwind-hyperclay"' package.json; then
26
- error "Must run from tailwind-hyperclay root directory"
27
- exit 1
28
- fi
29
-
30
- # ============================================
31
- # STEP 1: Collect Release Information
32
- # ============================================
33
-
34
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
35
- echo "Step 1: Release Information"
36
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
37
- echo ""
38
-
39
- # Get version bump type
40
- echo "Select version bump type:"
41
- echo " 1) patch (bug fixes, 1.0.0 → 1.0.1)"
42
- echo " 2) minor (new features, 1.0.0 → 1.1.0)"
43
- echo " 3) major (breaking changes, 1.0.0 → 2.0.0)"
44
- echo " 4) custom (enter version manually)"
45
- echo ""
46
- read -p "Enter choice [1-4]: " version_choice
47
-
48
- case $version_choice in
49
- 1) VERSION_TYPE="patch" ;;
50
- 2) VERSION_TYPE="minor" ;;
51
- 3) VERSION_TYPE="major" ;;
52
- 4)
53
- read -p "Enter custom version (e.g., 2.0.0-beta.1): " CUSTOM_VERSION
54
- VERSION_TYPE="custom"
55
- ;;
56
- *)
57
- error "Invalid choice"
58
- exit 1
59
- ;;
60
- esac
61
-
62
- # Publish tag (latest, beta, alpha)
63
- echo ""
64
- read -p "NPM publish tag [latest/beta/alpha] (default: latest): " NPM_TAG
65
- NPM_TAG=${NPM_TAG:-latest}
66
-
67
- # ============================================
68
- # STEP 2: Pre-Release Checks
69
- # ============================================
70
-
71
- echo ""
72
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
73
- echo "Step 2: Pre-Release Checks"
74
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
75
- echo ""
76
-
77
- # Check git status
78
- info "Checking git status..."
79
- if [ -n "$(git status --porcelain)" ]; then
80
- warn "You have uncommitted changes:"
81
- git status --short
82
- read -p "Continue anyway? [y/N]: " continue_dirty
83
- if [[ ! $continue_dirty =~ ^[Yy]$ ]]; then
84
- exit 1
85
- fi
86
- else
87
- success "Working directory clean"
88
- fi
89
-
90
- # ============================================
91
- # STEP 3: Test
92
- # ============================================
93
-
94
- echo ""
95
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
96
- echo "Step 3: Test"
97
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
98
- echo ""
99
-
100
- # Run tests
101
- info "Running tests..."
102
- if npm test; then
103
- success "All tests passed"
104
- else
105
- error "Tests failed"
106
- read -p "Continue anyway? [y/N]: " continue_tests
107
- if [[ ! $continue_tests =~ ^[Yy]$ ]]; then
108
- exit 1
109
- fi
110
- fi
111
-
112
- # ============================================
113
- # STEP 4: Version Bump
114
- # ============================================
115
-
116
- echo ""
117
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
118
- echo "Step 4: Version Bump"
119
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
120
- echo ""
121
-
122
- # Get current version
123
- CURRENT_VERSION=$(node -p "require('./package.json').version")
124
- info "Current version: $CURRENT_VERSION"
125
-
126
- # Bump version
127
- if [ "$VERSION_TYPE" = "custom" ]; then
128
- NEW_VERSION="$CUSTOM_VERSION"
129
- npm version "$NEW_VERSION" --no-git-tag-version
130
- else
131
- NEW_VERSION=$(npm version "$VERSION_TYPE" --no-git-tag-version | sed 's/^v//')
132
- fi
133
-
134
- success "Version bumped to: $NEW_VERSION"
135
-
136
- # ============================================
137
- # STEP 5: Commit and Tag
138
- # ============================================
139
-
140
- echo ""
141
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
142
- echo "Step 5: Commit and Tag"
143
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
144
- echo ""
145
-
146
- # Stage changes
147
- git add package.json package-lock.json
148
-
149
- # Commit
150
- COMMIT_MSG="chore: release v$NEW_VERSION"
151
- git commit -m "$COMMIT_MSG"
152
- success "Changes committed"
153
-
154
- # Create tag
155
- git tag -a "v$NEW_VERSION" -m "Release v$NEW_VERSION"
156
- success "Tag created: v$NEW_VERSION"
157
-
158
- # ============================================
159
- # STEP 6: Dry Run
160
- # ============================================
161
-
162
- echo ""
163
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
164
- echo "Step 6: Pre-Publish Verification"
165
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
166
- echo ""
167
-
168
- info "Running npm publish --dry-run..."
169
- npm publish --dry-run --tag "$NPM_TAG"
170
-
171
- echo ""
172
- warn "Review the output above carefully!"
173
- echo ""
174
-
175
- # ============================================
176
- # STEP 7: Publish
177
- # ============================================
178
-
179
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
180
- echo "Step 7: Publish to npm"
181
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
182
- echo ""
183
-
184
- echo "Summary:"
185
- echo " Version: $CURRENT_VERSION → $NEW_VERSION"
186
- echo " Tag: $NPM_TAG"
187
- echo " Git tag: v$NEW_VERSION"
188
- echo ""
189
-
190
- read -p "Publish to npm? [y/N]: " confirm_publish
191
- if [[ ! $confirm_publish =~ ^[Yy]$ ]]; then
192
- warn "Publish cancelled"
193
- echo ""
194
- echo "To manually publish later:"
195
- echo " git push origin main"
196
- echo " git push origin --tags"
197
- echo " npm publish --tag $NPM_TAG"
198
- exit 0
199
- fi
200
-
201
- # Publish to npm
202
- info "Publishing to npm..."
203
- npm publish --tag "$NPM_TAG"
204
- success "Published to npm!"
205
-
206
- # Push to git
207
- info "Pushing to GitHub..."
208
- git push origin main
209
- git push origin --tags
210
- success "Pushed to GitHub"
211
-
212
- # ============================================
213
- # STEP 8: Verify
214
- # ============================================
215
-
216
- echo ""
217
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
218
- echo "Step 8: Verification"
219
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
220
- echo ""
221
-
222
- sleep 5 # Give npm a moment to update
223
-
224
- info "Verifying npm publication..."
225
- NPM_VERSION=$(npm view tailwind-hyperclay version 2>/dev/null || echo "unknown")
226
- if [ "$NPM_VERSION" = "$NEW_VERSION" ]; then
227
- success "npm shows version: $NPM_VERSION"
228
- else
229
- warn "npm shows version: $NPM_VERSION (expected: $NEW_VERSION)"
230
- warn "It may take a few moments for npm to update"
231
- fi
232
-
233
- # ============================================
234
- # Done!
235
- # ============================================
236
-
237
- echo ""
238
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
239
- success "Release Complete!"
240
- echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
241
- echo ""
242
- echo "Released: tailwind-hyperclay@$NEW_VERSION"
243
- echo "npm tag: $NPM_TAG"
244
- echo "Git tag: v$NEW_VERSION"
245
- echo ""
246
- echo "Install with:"
247
- echo " npm install tailwind-hyperclay@$NEW_VERSION"
248
- echo ""