Skip to content

Commit e829df1

Browse files
authored
Merge pull request #26 from mcserversoft/dev
Update to v5.0.0
2 parents 0125bda + 5757fc1 commit e829df1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+2779
-1785
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.exports = {
22
root: true,
33
parser: '@typescript-eslint/parser',
4-
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
4+
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
55
plugins: ['svelte3', '@typescript-eslint'],
66
ignorePatterns: ['*.cjs'],
77
overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ node_modules
66
.env
77
.env.*
88
!.env.example
9-
.vercel
10-
.output
119
# custom
12-
mcss-panel.zip
1310
panel.zip
1411
.save

.prettierignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.DS_Store
2+
node_modules
3+
/build
4+
/.svelte-kit
5+
/package
6+
.env
7+
.env.*
8+
!.env.example
9+
10+
# Ignore files for PNPM, NPM and YARN
11+
pnpm-lock.yaml
12+
package-lock.json
13+
yarn.lock

.prettierrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"useTabs": true,
3+
"singleQuote": true,
4+
"trailingComma": "none",
5+
"printWidth": 300,
6+
"pluginSearchDirs": ["."],
7+
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }]
8+
}

global.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
declare const __VERSION__: string;

0 commit comments

Comments
 (0)