-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# [3.13.0](3.12.1...3.13.0) (2024-05-27) ### Features * Add manual Firebase integration for Space EdVentures data collection. ([34892e3](34892e3))
- Loading branch information
1 parent
26ff383
commit 19d1e43
Showing
2 changed files
with
16 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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": "[email protected]" | ||
} |