Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#115 Load custom plugins #116

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ node_modules
.env
.env.*
!.env.example
scripts/

# Ignore files for PNPM, NPM and YARN
pnpm-lock.yaml
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
run: pnpm install
- name: check prettier
run: pnpm format:check
- name: run package
run: pnpm package
- name: check cargo fmt
run: |
cd src-tauri
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "delete-svelte",
"version": "0.0.1",
"bin": "src-sidecar/index.js",
"scripts": {
"dev": "vite dev",
"build": "vite build",
Expand All @@ -10,7 +11,8 @@
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"format:check": "prettier --plugin-search-dir . --check .",
"hooks": "git config core.hooksPath ./git-hooks"
"hooks": "git config core.hooksPath ./git-hooks",
"package": "pkg package.json --output src-tauri/binaries/nodejs --compress GZip && node scripts/move-binary.js"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
Expand All @@ -23,6 +25,8 @@
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte": "^2.30.0",
"execa": "8.0.1",
"pkg": "5.8.1",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.10.1",
"svelte": "^4.0.5",
Expand Down
5 changes: 5 additions & 0 deletions pkgconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"pkg": {
"assets": ["src-sidecar/**/*"]
}
}
Loading
Loading