Skip to content

Commit

Permalink
chore: prepare beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
ElMassimo committed Dec 4, 2024
1 parent c291852 commit 0a72091
Show file tree
Hide file tree
Showing 17 changed files with 106 additions and 81 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"blog:build": "npm run -C playground/the-vue-point build",
"blog:now": "npm run -C playground/the-vue-point now",
"blog:check": "npm -C playground/the-vue-point run check",
"release": "node scripts/release.cjs",
"changelog": "node scripts/changelog.cjs",
"release": "tsx scripts/release.ts",
"changelog": "tsx scripts/changelog.ts",
"test": "packages/iles/bin/iles.js test"
},
"devDependencies": {
Expand All @@ -36,6 +36,7 @@
"minimist": "^1.2.8",
"pkg-dir": "^8.0.0",
"semver": "^7.6.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/excerpt/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/excerpt",
"version": "0.9.0",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/excerpt.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/feed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/feed",
"version": "0.8.1",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/types.ts src/feed.ts src/render-feed.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/headings/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/headings",
"version": "0.8.2",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/headings.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/hydration/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@islands/hydration",
"description": "Hydration utilities for îles",
"version": "0.8.2",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup hydration.ts preact.ts vue.ts vanilla.ts solid.ts svelte.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/icons",
"version": "0.8.0",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/icons.ts",
Expand Down
10 changes: 5 additions & 5 deletions packages/iles/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "iles",
"description": "Vite & Vue powered static site generator with partial hydration",
"version": "0.9.5",
"version": "0.10.0-beta.1",
"type": "module",
"bin": {
"iles": "bin/iles.js"
Expand Down Expand Up @@ -64,10 +64,10 @@
},
"dependencies": {
"@antfu/install-pkg": "^0.3.3",
"@islands/hydration": "workspace:^0.8.0",
"@islands/mdx": "workspace:^0.9.0",
"@islands/pages": "workspace:^0.8.0",
"@islands/prerender": "workspace:^0.8.0",
"@islands/hydration": "workspace:^0.10.0-beta.1",
"@islands/mdx": "workspace:^0.10.0-beta.1",
"@islands/pages": "workspace:^0.10.0-beta.1",
"@islands/prerender": "workspace:^0.10.0-beta.1",
"@nuxt/devalue": "^2.0.2",
"@unhead/ssr": "^1.9.16",
"@unhead/vue": "^1.9.16",
Expand Down
2 changes: 1 addition & 1 deletion packages/images/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/images",
"version": "0.8.2",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/images.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mdx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/mdx",
"version": "0.9.0",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/mdx.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/pages",
"version": "0.8.1",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/pages.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/prerender/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@islands/prerender",
"description": "Prerender utilities for îles",
"version": "0.8.1",
"version": "0.10.0-beta.1",
"type": "module",
"files": [
"dist"
Expand Down Expand Up @@ -32,7 +32,7 @@
"url": "https://github.com/ElMassimo/iles/issues"
},
"dependencies": {
"@islands/hydration": "workspace:^0.8.0"
"@islands/hydration": "workspace:^0.10.0-beta.1"
},
"devDependencies": {
"preact": "^10.24.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/prism/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/prism",
"version": "0.8.0",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/prism.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/pwa/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@islands/pwa",
"version": "0.9.1",
"version": "0.10.0-beta.1",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/pwa.ts",
Expand Down
4 changes: 2 additions & 2 deletions playground/the-vue-point/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
},
"devDependencies": {
"@iconify-json/carbon": "^1.1.36",
"@islands/excerpt": "workspace:^0.9",
"@islands/excerpt": "workspace:^0.10.0-beta.1",
"@islands/feed": "workspace:*",
"@islands/headings": "workspace:^0.8",
"@islands/headings": "workspace:^0.10.0-beta.1",
"@islands/icons": "workspace:*",
"@islands/images": "workspace:*",
"@islands/prism": "workspace:*",
Expand Down
Loading

0 comments on commit 0a72091

Please sign in to comment.