Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Thorium-Sim/thorium into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Anderson committed Jun 24, 2020
2 parents 5545b55 + b32eb7f commit 42f8424
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 23 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.12.3](https://github.com/Thorium-Sim/thorium/compare/2.12.2...2.12.3) (2020-06-23)


### Bug Fixes

* **Kiosk:** Fixes an issue that causes the kiosk to not load. Closes [#2985](https://github.com/Thorium-Sim/thorium/issues/2985) ([13274d0](https://github.com/Thorium-Sim/thorium/commit/13274d04a8930d5438a3b8a9e4c0317fe64bb32d))

## [2.12.2](https://github.com/Thorium-Sim/thorium/compare/2.12.1...2.12.2) (2020-06-19)


Expand Down
31 changes: 8 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thorium",
"version": "2.12.2",
"version": "2.12.3",
"description": "Starship Simulator Controls",
"private": true,
"repository": {
Expand Down Expand Up @@ -65,9 +65,7 @@
},
"proxy": "http://localhost:3001",
"nodemonConfig": {
"watch": [
"server/"
],
"watch": ["server/"],
"ignore": [
".git",
"./src/*",
Expand All @@ -88,12 +86,8 @@
}
},
"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"
]
Expand All @@ -110,9 +104,7 @@
"directories": {
"output": "./packages"
},
"publish": {
"provider": "github"
},
"publish": { "provider": "github" },
"files": [
"electron/**/*",
"!**/node_modules/**/*",
Expand Down Expand Up @@ -141,15 +133,10 @@
]
},
"win": {
"target": [
"zip",
"portable"
],
"target": ["zip", "portable"],
"icon": "./public/icon.ico"
},
"linux": {
"category": "Utility"
}
"linux": { "category": "Utility" }
},
"bin": "./server/index.js",
"pkg": {
Expand All @@ -169,9 +156,7 @@
]
},
"release": {
"branches": [
"main"
],
"branches": ["main"],
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down

0 comments on commit 42f8424

Please sign in to comment.