Skip to content

Commit

Permalink
Merge pull request #5 from zhoujinfu/main
Browse files Browse the repository at this point in the history
Thanks for the effort to the repo, I made some super tiny enhancements for you to check
  • Loading branch information
chenxch committed Apr 23, 2022
2 parents 69f8a10 + a50e655 commit 72aa850
Show file tree
Hide file tree
Showing 9 changed files with 884 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ node_modules
dist
dist-ssr
*.local
# tests
coverage
__snapshots__/
16 changes: 12 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
"description": "Resolve all resource files dynamic publicPath, like Webpack's __webpack_public_path__",
"main": "dist/index.js",
"scripts": {
"dev": "tsc -p . -w --incremental --skipLibCheck",
"build": "rm -rf dist && tsc -p . --skipLibCheck"
"dev": "tsc -p ./tsconfig.build.json -w --incremental --skipLibCheck",
"build": "rm -rf dist && tsc -p ./tsconfig.build.json --skipLibCheck",
"test": "vitest run",
"coverage": "vitest run --coverage",
"tdd": "vitest -w"
},
"files": [
"dist"
Expand All @@ -22,8 +25,13 @@
"homepage": "https://github.com/chenxch/vite-plugin-dynamic-base",
"devDependencies": {
"@types/node": "^16.0.0",
"node-html-parser": "^5.2.0",
"vite": "^2.4.0"
"c8": "^7.11.2",
"typescript": "^4.6.3",
"vite": "^2.4.0",
"vitest": "^0.9.4"
},
"dependencies": {
"node-html-parser": "^5.2.0"
},
"keywords": [
"vite",
Expand Down
Loading

0 comments on commit 72aa850

Please sign in to comment.