Skip to content

Commit

Permalink
refactor: change js to ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukiniro committed May 19, 2022
1 parent 766a182 commit 7317e56
Show file tree
Hide file tree
Showing 9 changed files with 230 additions and 42 deletions.
15 changes: 10 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
{
"name": "toukey",
"version": "1.0.7",
"version": "1.1.0",
"description": "Toukey is a Javascript library for keyboard shortcuts",
"main": "dist/toukey.cjs.js",
"module": "dist/toukey.esm.js",
"types": "dist",
"scripts": {
"build:dev": "npx rollup -c rollup.config.dev.js",
"build:prod": "npx rollup -c rollup.config.prod.js",
"build:all": "npm run build:dev && npm run build:prod",
"prettier": "npx prettier * --write",
"lint": "npx eslint src/* --fix",
"test": "npx vitest",
"test:run": "npx vitest run",
"test:coverrage": "npx vitest --coverage",
"publish": "npm run build:dev && npm run build:prod && npm publish"
"test": "npm run build:all && npx vitest",
"test:run": "npm run build:all && npx vitest run",
"test:coverrage": "npm run build:all && npx vitest --coverage",
"publish": "npm run build:all && npm publish"
},
"keywords": [
"keyboard",
Expand Down Expand Up @@ -59,6 +61,9 @@
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"vitest": "^0.6.1"
}
}
Loading

1 comment on commit 7317e56

@vercel
Copy link

@vercel vercel bot commented on 7317e56 May 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

toukey – ./

toukey.vercel.app
toukey-yukiniro.vercel.app
toukey-git-master-yukiniro.vercel.app

Please sign in to comment.