diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f06d237f..35a1d812b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [3.13.0](https://github.com/Thorium-Sim/thorium/compare/3.12.1...3.13.0) (2024-05-27) + + +### Features + +* Add manual Firebase integration for Space EdVentures data collection. ([34892e3](https://github.com/Thorium-Sim/thorium/commit/34892e3d167143254222a4ace51a6e922f2c767a)) + ## [3.12.1](https://github.com/Thorium-Sim/thorium/compare/3.12.0...3.12.1) (2024-03-16) diff --git a/package.json b/package.json index e61b01cd4..2ca662176 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "thorium", - "version": "3.12.1", + "version": "3.13.0", "description": "Starship Simulator Controls", "private": true, "repository": { @@ -64,9 +64,7 @@ }, "proxy": "http://localhost:3001", "nodemonConfig": { - "watch": [ - "server/" - ], + "watch": ["server/"], "ignore": [ ".git", "./src/*", @@ -82,12 +80,8 @@ "last 1 safari version" ], "lint-staged": { - "*.{js,jsx,ts,tsx}": [ - "eslint" - ], - "*.{css,scss}": [ - "stylelint" - ], + "*.{js,jsx,ts,tsx}": ["eslint"], + "*.{css,scss}": ["stylelint"], "**/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx|graphql|vue)": [ "prettier --write" ] @@ -104,9 +98,7 @@ "directories": { "output": "./packages" }, - "publish": { - "provider": "github" - }, + "publish": { "provider": "github" }, "files": [ "electron/**/*", "!**/node_modules/**/*", @@ -135,15 +127,10 @@ ] }, "win": { - "target": [ - "zip", - "portable" - ], + "target": ["zip", "portable"], "icon": "./public/icon.ico" }, - "linux": { - "category": "Utility" - } + "linux": { "category": "Utility" } }, "bin": "./server/index.js", "pkg": { @@ -163,9 +150,7 @@ ] }, "release": { - "branches": [ - "main" - ], + "branches": ["main"], "tagFormat": "${version}", "plugins": [ "@semantic-release/commit-analyzer", @@ -400,8 +385,6 @@ "param-case": "3.0.3", "@babel/preset-env": "^7.8.7" }, - "volta": { - "node": "14.21.3" - }, + "volta": { "node": "14.21.3" }, "packageManager": "yarn@1.22.1" }