v-float 0.3.1 → 0.4.0
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/README.md +0 -59
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -322,65 +322,6 @@ For complete documentation with interactive examples, visit the [V-Float Documen
|
|
|
322
322
|
Contributions are welcome! Please read our contributing guidelines and submit pull requests to
|
|
323
323
|
our [GitHub repository](https://github.com/sherif414/VFloat).
|
|
324
324
|
|
|
325
|
-
## Development
|
|
326
|
-
|
|
327
|
-
### Prerequisites
|
|
328
|
-
|
|
329
|
-
- Node.js (18+)
|
|
330
|
-
- pnpm (recommended package manager)
|
|
331
|
-
|
|
332
|
-
### Setup
|
|
333
|
-
|
|
334
|
-
```bash
|
|
335
|
-
# Clone the repository
|
|
336
|
-
git clone https://github.com/sherif414/VFloat.git
|
|
337
|
-
cd VFloat
|
|
338
|
-
|
|
339
|
-
# Install dependencies
|
|
340
|
-
pnpm install
|
|
341
|
-
|
|
342
|
-
# Start development server
|
|
343
|
-
pnpm dev
|
|
344
|
-
|
|
345
|
-
# Run tests
|
|
346
|
-
pnpm test:unit
|
|
347
|
-
|
|
348
|
-
# Build for production
|
|
349
|
-
pnpm build
|
|
350
|
-
```
|
|
351
|
-
|
|
352
|
-
### Release Process
|
|
353
|
-
|
|
354
|
-
This project uses [release-it](https://github.com/release-it/release-it) for automated releases:
|
|
355
|
-
|
|
356
|
-
```bash
|
|
357
|
-
# Dry run to see what would happen
|
|
358
|
-
pnpm run release:dry
|
|
359
|
-
|
|
360
|
-
# Release with automatic version bump (interactive)
|
|
361
|
-
pnpm run release
|
|
362
|
-
|
|
363
|
-
# Release specific version types
|
|
364
|
-
pnpm run release:patch # 0.2.1 -> 0.2.2
|
|
365
|
-
pnpm run release:minor # 0.2.1 -> 0.3.0
|
|
366
|
-
pnpm run release:major # 0.2.1 -> 1.0.0
|
|
367
|
-
```
|
|
368
|
-
|
|
369
|
-
**Release Features:**
|
|
370
|
-
|
|
371
|
-
- Automatic version bumping based on conventional commits
|
|
372
|
-
- Changelog generation from commit messages
|
|
373
|
-
- Git tagging and GitHub releases
|
|
374
|
-
- NPM publishing (when configured)
|
|
375
|
-
- Pre-release validation (linting, type checking, tests)
|
|
376
|
-
|
|
377
|
-
**Before releasing:**
|
|
378
|
-
|
|
379
|
-
1. Ensure all changes are committed
|
|
380
|
-
2. Working directory is clean
|
|
381
|
-
3. You're on the main branch
|
|
382
|
-
4. All tests pass
|
|
383
|
-
|
|
384
325
|
## License
|
|
385
326
|
|
|
386
327
|
MIT License - see [LICENSE](LICENSE) file for details.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "v-float",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Vue 3 port of Floating UI - a library for positioning floating elements",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@21st-extension/toolbar-vue": "^0.5.14",
|
|
28
28
|
"@21st-extension/vue": "^0.5.14",
|
|
29
|
-
"@biomejs/biome": "
|
|
29
|
+
"@biomejs/biome": "2.2.2",
|
|
30
30
|
"@release-it/conventional-changelog": "^10.0.1",
|
|
31
31
|
"@testing-library/vue": "^8.1.0",
|
|
32
32
|
"@tsconfig/node22": "^22.0.2",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"preview": "vite preview",
|
|
63
63
|
"build-only": "vite build",
|
|
64
64
|
"type-check": "vue-tsc --build tsconfig.build.json",
|
|
65
|
-
"lint": "biome check --
|
|
65
|
+
"lint": "biome check --write",
|
|
66
66
|
"test": "vitest --workspace=vitest.workspace.ts",
|
|
67
67
|
"docs:dev": "vitepress dev docs",
|
|
68
68
|
"docs:build": "vitepress build docs",
|