Skip to content

Commit

Permalink
feat: ➕ add changeset to deps, create CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBroughton committed Nov 13, 2023
1 parent f45c460 commit 78ee7a0
Show file tree
Hide file tree
Showing 4 changed files with 885 additions and 21 deletions.
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "restricted",
"baseBranch": "master",
"updateInternalDependencies": "patch",
"ignore": []
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Forager

## 2.0.0

### Major Changes

- Move environment settings to user account
- Users will
now have to provide thier own Mapbox API keys on account creation (this is a breaking change).
- Users will now have to ensure the appropriate
Pocketbase server URL is set on first launch to
properly communicate with the server.

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "my-vite-template",
"version": "1.2.0",
"name": "forager",
"version": "2.0.0",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
Expand All @@ -11,7 +11,10 @@
"lint:fix": "eslint \"src/*.{vue,ts,js}\" --fix",
"serve": "vite preview",
"pocketbase:serve": "./db/pocketbase serve",
"pocketbase:types": "npx pocketbase-typegen --db ./db/pb_data/data.db --out ./src/pocketbase-types.ts"
"pocketbase:types": "npx pocketbase-typegen --db ./db/pb_data/data.db --out ./src/pocketbase-types.ts",
"changeset": "npx changeset",
"changeset:status": "npx changeset status --verbose",
"changeset:version": "npx changeset version"
},
"dependencies": {
"@vueuse/core": "10.4.1",
Expand All @@ -23,6 +26,7 @@
},
"devDependencies": {
"@antfu/eslint-config": "0.43.0",
"@changesets/cli": "^2.26.2",
"@types/geojson": "^7946.0.10",
"@types/mapbox-gl": "^2.7.14",
"@types/node": "^20.6.2",
Expand Down
Loading

0 comments on commit 78ee7a0

Please sign in to comment.