-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from Lenni009/dev
add dependabot; format files
- Loading branch information
Showing
20 changed files
with
793 additions
and
807 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: 'npm' # See documentation for possible values | ||
directory: '/' # Location of package manifests | ||
target-branch: 'dev' | ||
schedule: | ||
interval: 'weekly' | ||
|
||
- package-ecosystem: 'github-actions' | ||
directory: '/' | ||
target-branch: 'dev' | ||
schedule: | ||
interval: 'weekly' |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Test Build | ||
run-name: Test Build | ||
|
||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
|
||
concurrency: | ||
group: "testbuild" | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Test Build | ||
uses: Lenni009/test-build-vite-action@main |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/dist |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"singleQuote": true, | ||
"semi": true, | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"printWidth": 120, | ||
"arrowParens": "always", | ||
"bracketSpacing": true, | ||
"endOfLine": "lf", | ||
"htmlWhitespaceSensitivity": "css", | ||
"useTabs": false, | ||
"vueIndentScriptAndStyle": false, | ||
"singleAttributePerLine": true | ||
} |
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,52 +1,73 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0" | ||
/> | ||
<title>BaseReorder</title> | ||
<script | ||
src="./src/main.ts" | ||
type="module" | ||
></script> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>BaseReorder</title> | ||
<script src="./src/main.ts" type="module"></script> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<nav> | ||
<a href=".." title="Other pages">← View other pages</a> | ||
</nav> | ||
<main> | ||
<h1 class="title is-3">BaseReorder</h1> | ||
<section id="input"> | ||
<div class="columns"> | ||
<div class="column is-four-fifths "> | ||
<label for="JSONinput">Copy your PersistentPlayerBases JSON section here:</label> | ||
<textarea id="JSONinput"></textarea> | ||
</div> | ||
<div id="checkboxes" class="column"> | ||
<label> | ||
<input type="checkbox" name="Settlement" id="settlementCheckbox" value="Settlement"> | ||
Settlement? | ||
</label> | ||
</div> | ||
</div> | ||
<p id="warn"></p> | ||
</section> | ||
<hr> | ||
<section id="output"> | ||
<div> | ||
<div class="columns"> | ||
<div class="column is-3"> | ||
<button class="button is-primary is-outlined" id="copy">Copy modified JSON</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="columns is-desktop"> | ||
<div class="column is-full-mobile"> | ||
<div id="bases"></div> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
</div> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<div class="container"> | ||
<nav> | ||
<a | ||
href=".." | ||
title="Other pages" | ||
>← View other pages</a | ||
> | ||
</nav> | ||
<main> | ||
<h1 class="title is-3">BaseReorder</h1> | ||
<section id="input"> | ||
<div class="columns"> | ||
<div class="column is-four-fifths"> | ||
<label for="JSONinput">Copy your PersistentPlayerBases JSON section here:</label> | ||
<textarea id="JSONinput"></textarea> | ||
</div> | ||
<div | ||
id="checkboxes" | ||
class="column" | ||
> | ||
<label> | ||
<input | ||
type="checkbox" | ||
name="Settlement" | ||
id="settlementCheckbox" | ||
value="Settlement" | ||
/> | ||
Settlement? | ||
</label> | ||
</div> | ||
</div> | ||
<p id="warn"></p> | ||
</section> | ||
<hr /> | ||
<section id="output"> | ||
<div> | ||
<div class="columns"> | ||
<div class="column is-3"> | ||
<button | ||
class="button is-primary is-outlined" | ||
id="copy" | ||
> | ||
Copy modified JSON | ||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="columns is-desktop"> | ||
<div class="column is-full-mobile"> | ||
<div id="bases"></div> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.