Skip to content

Commit

Permalink
release: plainweb and create-plainweb
Browse files Browse the repository at this point in the history
  • Loading branch information
joseferben committed Jul 11, 2024
1 parent b408ede commit 4b5989a
Show file tree
Hide file tree
Showing 10 changed files with 69 additions and 11 deletions.
6 changes: 0 additions & 6 deletions .changeset/curly-windows-sleep.md

This file was deleted.

6 changes: 6 additions & 0 deletions create-plainweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# create-plainweb

## 0.0.20

### Patch Changes

- b408ede: fix: default formatting of package.json

## 0.0.19

### Patch Changes
Expand Down
6 changes: 4 additions & 2 deletions create-plainweb/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"name": "create-plainweb",
"version": "0.0.19",
"version": "0.0.20",
"description": "Create a new plainweb.dev project",
"files": ["dist/"],
"files": [
"dist/"
],
"bin": {
"create-plainweb": "dist/cli.js"
},
Expand Down
6 changes: 6 additions & 0 deletions plainweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# plainweb

## 0.0.10

### Patch Changes

- b408ede: fix: default formatting of package.json

## 0.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plainweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plainweb",
"version": "0.0.9",
"version": "0.0.10",
"description": "A framework combining HTMX, SQLite and TypeScript for less complexity and more joy",
"files": ["dist/"],
"main": "dist/index.js",
Expand Down
36 changes: 36 additions & 0 deletions template/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# Dependencies
node_modules
.pnp
.pnp.js

# Local env files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local

# Testing
coverage

# Turbo
.turbo

# Build Outputs
out/
build
dist


# Debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Misc
.DS_Store
*.pem

db.sqlite3*
test-db.sqlite3*
output.css
node_modules
7 changes: 7 additions & 0 deletions template/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# my-app

## 1.0.10

### Patch Changes

- Updated dependencies [b408ede]
- [email protected]

## 1.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "my-app",
"version": "1.0.9",
"version": "1.0.10",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:app dev:tw db:studio",
Expand Down
7 changes: 7 additions & 0 deletions web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# plainweb.dev

## 1.0.10

### Patch Changes

- Updated dependencies [b408ede]
- [email protected]

## 1.0.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "1.0.9",
"version": "1.0.10",
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:app dev:tw db:studio",
Expand Down

0 comments on commit 4b5989a

Please sign in to comment.