Skip to content

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukiniro committed Nov 15, 2023
1 parent f6b6330 commit fb1a5cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
"name": "toukey",
"version": "1.2.6",
"version": "1.3.0",
"description": "Toukey is a Javascript library for keyboard shortcuts",
"main": "dist/toukey.min.cjs",
"module": "dist/toukey.min.mjs",
"types": "dist/src/index.d.ts",
"scripts": {
"build:dev": "npx rollup -c rollup.config.dev.mjs",
"build:prod": "npx rollup -c rollup.config.prod.mjs",
"build:all": "npm run build:dev && npm run build:prod",
"prettier": "npx prettier src/**/*.ts playground/src/**/*.jsx --write",
"lint": "npx eslint src/* --fix",
"zhlint": "npx zhlint README-zh.md",
"test": "npx vitest",
"test:run": "npx vitest run",
"test:coverrage": "npx vitest --coverage",
"clear": "node scripts/clearDist.mjs",
"npm:publish": "npm run test:run && npm run clear && npm run build:all && npm publish"
"npm:publish": "npm run test:run && npm run clear && npm run build:prod && npm publish"
},
"keywords": [
"keyboard",
Expand Down
4 changes: 3 additions & 1 deletion rollup.config.dev.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ export default {
}
],
plugins: [
typescript(),
typescript({
exclude: ["site/**"]
}),
resolve(),
commonjs(),
babel({
Expand Down

0 comments on commit fb1a5cb

Please sign in to comment.