Skip to content

Commit

Permalink
Merge pull request #45 from pkolt/35-add-import-image-from-bootstrap-…
Browse files Browse the repository at this point in the history
…icons

35-add-import-image-from-bootstrap-icons
  • Loading branch information
pkolt authored Jun 4, 2024
2 parents b1c3721 + 6abb51c commit 73dc219
Show file tree
Hide file tree
Showing 2,084 changed files with 10,623 additions and 471 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,8 @@ npm start
For some LCD displays such as the SSD1306, the image width must be a multiple of 8. If this requirement is not met, you will see a distorted image when displayed.

Just use an image width that is a multiple of 8.

## License

- Bitmap Editor - [MIT](./LICENSE.md)
- Bootstrap icons - [MIT](https://github.com/twbs/icons/blob/main/LICENSE)
1,458 changes: 1,037 additions & 421 deletions package-lock.json

Large diffs are not rendered by default.

29 changes: 16 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"lint-all": "node --run check-ts && node --run eslint && node --run format && node --run knip",
"lint-all-fix": "node --run eslint-fix && node --run format-fix",
"find-i18n": "node ./scripts/find_i18n.js",
"find-bs-icons": "node ./scripts/find_bs_icons.js",
"prepare": "git config core.hooksPath .git-hooks",
"pre-commit": "node --run lint-all && node --run test && node --run bench"
},
Expand All @@ -43,7 +44,7 @@
"react": "^18.3.1",
"react-bootstrap": "^2.10.2",
"react-dom": "^18.3.1",
"react-hook-form": "^7.51.4",
"react-hook-form": "^7.51.5",
"react-hotkeys-hook": "^4.5.0",
"react-i18next": "^14.1.2",
"react-router-dom": "^6.23.1",
Expand All @@ -57,29 +58,31 @@
"zustand": "^4.5.2"
},
"devDependencies": {
"@testing-library/react": "^15.0.7",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/bootstrap": "^5.2.10",
"@types/file-saver": "^2.0.7",
"@types/luxon": "^3.4.2",
"@types/node": "^20.12.12",
"@types/react": "^18.3.2",
"@types/node": "^20.14.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"@vitejs/plugin-react": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/coverage-v8": "^1.6.0",
"esbuild": "^0.21.3",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"happy-dom": "^14.11.0",
"knip": "^5.16.0",
"prettier": "^3.2.5",
"happy-dom": "^14.12.0",
"knip": "^5.17.4",
"msw": "^2.3.1",
"prettier": "^3.3.0",
"sass": "^1.77.4",
"typescript": "^5.4.5",
"vite": "^5.2.11",
"vite": "^5.2.12",
"vitest": "^1.5.0"
}
}
Loading

0 comments on commit 73dc219

Please sign in to comment.