-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from klovaaxel/refactor
Refactor and bump to 1.4.1
- Loading branch information
Showing
15 changed files
with
481 additions
and
1,244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"forceConsistentCasingInFileNames": true, | ||
"strict": true, | ||
"types": ["cypress"] | ||
}, | ||
"include": ["**/*.ts"] | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"name": "combobox-framework", | ||
"description": "A framework for building comboboxes", | ||
"keywords": [ | ||
|
@@ -16,7 +16,7 @@ | |
"url": "https://github.com/klovaaxel/combobox-framework/issues", | ||
"email": "[email protected]" | ||
}, | ||
"license": "SEE LICENSE IN LICENSE", | ||
"license": "SEE LICENSE IN FILE", | ||
"author": "klovaaxel", | ||
"browser": "dist/combobox-framework.js", | ||
"types": "dist/combobox-framework.d.ts", | ||
|
@@ -27,17 +27,13 @@ | |
}, | ||
"files": ["dist/**"], | ||
"scripts": { | ||
"dev": "vite", | ||
"build:watch": "vite build --watch", | ||
"build": "bun lint; tsc && vite build; bun run build.mjs; bun test; cypress run --component; echo \"Done! Don't forget to update the version number in package.json\"", | ||
"build-demo": "tsc && vite build", | ||
"build-module": "bun run build.mjs", | ||
"preview": "vite preview", | ||
"dev": "cypress open --component", | ||
"build": "bun lint; tsc && bun run build.mjs; cypress run --component; echo \"Done! Don't forget to update the version number in package.json\"", | ||
"lint": "bunx @biomejs/biome check --apply *.json; bunx @biomejs/biome check --apply src/" | ||
}, | ||
"devDependencies": { | ||
"@biomejs/biome": "^1.5.3", | ||
"@happy-dom/global-registrator": "^13.3.8", | ||
"@types/cypress": "^1.1.3", | ||
"bun-plugin-dts": "^0.2.1", | ||
"typescript": "^5.2.2", | ||
"vite": "^5.2.8", | ||
|
Oops, something went wrong.