Skip to content

Commit

Permalink
👷 Migrate build tools to vite
Browse files Browse the repository at this point in the history
  • Loading branch information
mokeyish committed May 19, 2023
1 parent 144a8d7 commit 0417651
Show file tree
Hide file tree
Showing 15 changed files with 3,621 additions and 3,215 deletions.
85 changes: 0 additions & 85 deletions esbuild.config.mjs

This file was deleted.

36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "This is a enhancing export plugin for Obsidian. It allows to export to formats like Html, DOCX, ePub and PDF or Markdown(Hugo) etc.",
"main": "dist/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"dev": "vite build -w -m development",
"build": "vite build",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint --ext .ts,.js src",
"lint-fix": "eslint --fix --ext .ts,.js src",
Expand All @@ -18,25 +18,25 @@
"license": "MIT",
"repository": "https://github.com/mokeyish/obsidian-enhancing-export",
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^16.11.6",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"builtin-modules": "^3.2.0",
"dotenv": "^16.0.0",
"esbuild": "0.14.34",
"esbuild-plugin-copy": "^1.3.0",
"eslint": "^8.13.0",
"jest": "^28.1.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.30",
"@types/semver": "^7.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"builtin-modules": "^3.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"jest": "^28.1.3",
"obsidian": "latest",
"prettier": "^2.6.2",
"ts-jest": "^28.0.2",
"prettier": "^2.8.8",
"ts-jest": "^28.0.8",
"tslib": "2.3.1",
"typescript": "4.6.3"
"typescript": "4.6.3",
"vite": "^4.3.6",
"vite-plugin-static-copy": "^0.15.0"
},
"dependencies": {
"semver": "^7.3.8",
"yargs": "^17.5.1"
"semver": "^7.5.1",
"yargs": "^17.7.2"
}
}

0 comments on commit 0417651

Please sign in to comment.