Skip to content

Commit

Permalink
Merge pull request #47 from ahmedatigui/master
Browse files Browse the repository at this point in the history
feat(migration): migrate project to typescript
  • Loading branch information
neSpecc authored Nov 21, 2024
2 parents e63e91a + a02f106 commit 0f3ec98
Show file tree
Hide file tree
Showing 7 changed files with 2,341 additions and 395 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ npm-debug.log
.idea/
.DS_Store
dist
.yarn/
13 changes: 9 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@editorjs/warning",
"version": "1.4.0",
"version": "1.4.1",
"keywords": [
"codex editor",
"warning",
Expand All @@ -16,10 +16,12 @@
],
"main": "./dist/warning.umd.js",
"module": "./dist/warning.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/warning.mjs",
"require": "./dist/warning.umd.js"
"require": "./dist/warning.umd.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
Expand All @@ -31,10 +33,13 @@
"email": "[email protected]"
},
"devDependencies": {
"typescript": "^5.6.3",
"vite": "^4.5.0",
"vite-plugin-css-injected-by-js": "^3.3.0"
"vite-plugin-css-injected-by-js": "^3.3.0",
"vite-plugin-dts": "^4.3.0"
},
"dependencies": {
"@codexteam/icons": "^0.0.4"
"@codexteam/icons": "^0.3.2",
"@editorjs/editorjs": "^2.30.7"
}
}
191 changes: 0 additions & 191 deletions src/index.js

This file was deleted.

Loading

0 comments on commit 0f3ec98

Please sign in to comment.