Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaochenchen-igg-com committed Apr 23, 2022
1 parent 72aa850 commit 48390cf
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ dist-ssr
*.local
# tests
coverage
__snapshots__/
# __snapshots__/
13 changes: 13 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Changelog

### 0.3.0

_2022-04-23_

#### Features

- setup simple unit tests with `vitest`. (#5 by @zhoujinfu)

#### Bug fixes

- import.env.LEGACY cause undefined errors with vite config `define`. (#5 by @zhoujinfu)
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
{
"name": "vite-plugin-dynamic-base",
"version": "0.2.0",
"version": "0.3.0",
"description": "Resolve all resource files dynamic publicPath, like Webpack's __webpack_public_path__",
"main": "dist/index.js",
"scripts": {
"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"
"tdd": "vitest -w",
"update": "vitest run --update"
},
"files": [
"dist"
Expand Down

0 comments on commit 48390cf

Please sign in to comment.