remove junk
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
# Changesets
|
||||
|
||||
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
|
||||
with multi-package repos, or single-package repos to help you version and publish your code. You can
|
||||
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
|
||||
|
||||
We have a quick list of common questions to get you started engaging with this project in
|
||||
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
|
@@ -1,11 +0,0 @@
|
||||
{
|
||||
"$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
|
||||
"changelog": "@changesets/cli/changelog",
|
||||
"commit": false,
|
||||
"fixed": [],
|
||||
"linked": [],
|
||||
"access": "restricted",
|
||||
"baseBranch": "dev",
|
||||
"updateInternalDependencies": "patch",
|
||||
"ignore": []
|
||||
}
|
@@ -1,84 +0,0 @@
|
||||
# v 0.2
|
||||
# Minified files
|
||||
*.min.*
|
||||
*.min.*
|
||||
|
||||
# Husky
|
||||
.husky/*
|
||||
|
||||
# Git
|
||||
.gitignore
|
||||
|
||||
# Eslint
|
||||
.eslintignore
|
||||
|
||||
# Prettier
|
||||
.prettierignore
|
||||
|
||||
# Markdown files
|
||||
*.md
|
||||
|
||||
# Pnpm
|
||||
pnpm-lock.yaml
|
||||
|
||||
# dotenv environment variable files
|
||||
.env
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
.env.local
|
||||
|
||||
# Runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
## Build files
|
||||
|
||||
# Common
|
||||
build
|
||||
release
|
||||
dist
|
||||
|
||||
# Rust
|
||||
target
|
||||
|
||||
# Svelte-Kit
|
||||
.svelte-kit
|
||||
|
||||
# Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
|
||||
# Docusaurus cache and generated files
|
||||
.docusaurus
|
||||
|
||||
|
||||
# Nodejs packages
|
||||
node_modules/
|
||||
|
||||
# Package Managers
|
||||
|
||||
.npm
|
||||
# Yarn
|
||||
.yarn-integrity
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Serverless directories
|
||||
.serverless/
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
lerna-debug.log*
|
||||
.pnpm-debug.log*
|
@@ -1,76 +0,0 @@
|
||||
/** @type { import("eslint").Linter.FlatConfig } */
|
||||
module.exports = {
|
||||
root: true,
|
||||
extends: [
|
||||
'eslint:recommended',
|
||||
'plugin:@typescript-eslint/recommended',
|
||||
'plugin:svelte/recommended',
|
||||
'prettier'
|
||||
],
|
||||
parser: '@typescript-eslint/parser',
|
||||
plugins: ['@typescript-eslint'],
|
||||
parserOptions: {
|
||||
sourceType: 'module',
|
||||
ecmaVersion: 'latest',
|
||||
extraFileExtensions: ['.svelte']
|
||||
},
|
||||
env: {
|
||||
browser: true,
|
||||
es2024: true,
|
||||
node: true
|
||||
},
|
||||
globals: { $$Generic: 'readable', NodeJS: true },
|
||||
rules: {
|
||||
'no-console': 'warn',
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'warn',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^_'
|
||||
}
|
||||
],
|
||||
'svelte/no-target-blank': 'error',
|
||||
'svelte/no-immutable-reactive-statements': 'error',
|
||||
'svelte/prefer-style-directive': 'error',
|
||||
'svelte/no-reactive-literals': 'error',
|
||||
'svelte/no-useless-mustaches': 'error',
|
||||
'svelte/button-has-type': 'off',
|
||||
'svelte/require-each-key': 'off',
|
||||
'svelte/no-at-html-tags': 'off',
|
||||
'svelte/no-unused-svelte-ignore': 'off',
|
||||
'svelte/require-stores-init': 'off'
|
||||
},
|
||||
overrides: [
|
||||
{
|
||||
files: ['*.svelte'],
|
||||
parser: 'svelte-eslint-parser',
|
||||
parserOptions: {
|
||||
parser: '@typescript-eslint/parser'
|
||||
},
|
||||
rules: {
|
||||
'@typescript-eslint/no-unused-vars': [
|
||||
'warn',
|
||||
{
|
||||
argsIgnorePattern: '^_',
|
||||
varsIgnorePattern: '^\\$\\$(Props|Events|Slots|Generic)$'
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
files: ['*.ts'],
|
||||
parser: '@typescript-eslint/parser',
|
||||
rules: {
|
||||
'@typescript-eslint/ban-types': [
|
||||
'error',
|
||||
{
|
||||
extendDefaults: true,
|
||||
types: {
|
||||
'{}': false
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
@@ -1,8 +0,0 @@
|
||||
#!/bin/sh
|
||||
. "$(dirname "$0")/_/husky.sh"
|
||||
|
||||
# If not using pnpm, switch to your package manager
|
||||
npx lint-staged
|
||||
|
||||
cd src-tauri
|
||||
cargo clippy -- -W clippy::nursery -W clippy::pedantic -A clippy::module-name-repetitions -W clippy::unwrap_used
|
25
CHANGELOG.md
25
CHANGELOG.md
@@ -1,25 +0,0 @@
|
||||
# svelte-tauri
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 175be29: Make a helper script to allow syncing pkg versions in the project
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 353ec97: Switching ui to shadcn-svelte
|
||||
|
||||
## 0.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 98b1df2: Switching ui to shadcn-svelte
|
||||
|
||||
## 0.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 41ffe7b: First changeset
|
19
package.json
19
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "svelte-tauri",
|
||||
"version": "0.2.1",
|
||||
"version": "0.2.2",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
@@ -17,21 +17,11 @@
|
||||
"build": "tauri build",
|
||||
"dev": "tauri dev",
|
||||
"format": "prettier --write .",
|
||||
"postinstall": "husky install",
|
||||
"lint": "eslint .",
|
||||
"check": "svelte-check --tsconfig ./tsconfig.json",
|
||||
"svelte:build": "vite build",
|
||||
"svelte:dev": "vite dev",
|
||||
"changeset:version": "changeset version && tsx SyncVersion.ts"
|
||||
},
|
||||
"lint-staged": {
|
||||
"*.{ts,svelte}": [
|
||||
"eslint --cache --fix",
|
||||
"prettier --write --ignore-unknown"
|
||||
]
|
||||
"svelte:dev": "vite dev"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@changesets/cli": "^2.27.1",
|
||||
"@fontsource/roboto": "^5.0.13",
|
||||
"@fortawesome/fontawesome-svg-core": "^6.5.2",
|
||||
"@fortawesome/free-brands-svg-icons": "^6.5.2",
|
||||
@@ -58,8 +48,6 @@
|
||||
"eslint-plugin-svelte3": "^4.0.0",
|
||||
"eslint-plugin-unused-imports": "^3.2.0",
|
||||
"formsnap": "^1.0.0",
|
||||
"husky": "^9.0.11",
|
||||
"lint-staged": "^15.2.2",
|
||||
"lucide-svelte": "^0.378.0",
|
||||
"mode-watcher": "^0.3.0",
|
||||
"postcss": "^8.4.38",
|
||||
@@ -89,5 +77,8 @@
|
||||
"engines": {
|
||||
"pnpm": ">=9.x",
|
||||
"node": ">20.0.x <21.0.x"
|
||||
},
|
||||
"dependencies": {
|
||||
"svelte-tauri": "link:"
|
||||
}
|
||||
}
|
||||
|
6154
pnpm-lock.yaml
generated
6154
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
1549
src-tauri/Cargo.lock
generated
1549
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "svelte-tauri"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
description = "Svelte-Tauri template starter"
|
||||
authors = ["Fractal-Tess"]
|
||||
license = "MIT"
|
||||
|
@@ -8,7 +8,7 @@
|
||||
},
|
||||
"package": {
|
||||
"productName": "svelte-tauri",
|
||||
"version": "0.2.1"
|
||||
"version": "0.2.2"
|
||||
},
|
||||
"tauri": {
|
||||
"allowlist": {
|
||||
|
Reference in New Issue
Block a user