Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

still simplyifying codebase #258

Open
wants to merge 23 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
93105a5
still simplyifying codebase
prjctimg Nov 24, 2024
e2831d4
configured the default git credentials
xmlwizard Nov 24, 2024
890abe0
fixed some typos
xmlwizard Nov 24, 2024
a0b776d
fixed some typos
xmlwizard Nov 24, 2024
d06b430
fix: palettes.ts now has passing tests.\n also made the palette wrapp…
xmlwizard Nov 26, 2024
148af7b
refactor: removed dead imports
xmlwizard Nov 26, 2024
31b6190
refactor: trying to fix errors in the token parser
xmlwizard Nov 26, 2024
660f787
token parser now performs back and forth conversions without throwing
xmlwizard Nov 27, 2024
f94e668
refactor: trying to debug collection functions
xmlwizard Nov 27, 2024
7466f52
refactor: debugging the sortBy utility. the codebase is messed up bro
xmlwizard Nov 28, 2024
9e9a5e0
fix: mc utility now returns expected chsnnel values. fixed bug in tok…
xmlwizard Dec 5, 2024
a511a5c
stashed changes
xmlwizard Dec 8, 2024
4e49258
fix: alpha now fetches the alpha channel correctly from arrays
xmlwizard Dec 8, 2024
fc0d6eb
so fckng confused right now....breaking shitt for the night
xmlwizard Dec 14, 2024
c2eaf67
fix: family() now works as expected
xmlwizard Dec 17, 2024
34fb6c8
refactor: overtone has been deprecated into an object property in fam…
xmlwizard Dec 17, 2024
f2556a0
fix: temp now works as expected
xmlwizard Dec 17, 2024
c681cb6
fix: temp now works as expected
xmlwizard Dec 17, 2024
4b5f2bb
added luminance() and lightness tests. debugging luminance
xmlwizard Dec 18, 2024
0ae8e4f
added luminance() and lightness tests. debugging luminance
xmlwizard Dec 18, 2024
a1ee1e6
fix: alpha() now sets the alpha value on arrays as expected
xmlwizard Dec 19, 2024
d369a18
fix: alpha() now sets the alpha value on arrays as expected
xmlwizard Dec 19, 2024
cad2ea9
docs:fixed docs for utils and all tests are passing🚀
xmlwizard Dec 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bun.lockb
# Generated files
**/.docusaurus
**/.cache-loader

./test.ts
roadmap
lodash-main
lessons-learnt-from-my-first-open-source-project.md
Expand Down
4 changes: 2 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"recommendations": [
"denoland.vscode-deno",
"biomejs.biome",
"oven.bun-vscode",
"yoavbls.pretty-ts-errors",
"bradlc.vscode-tailwindcss",
"unifiedjs.vscode-mdx",
"github.vscode-github-actions"
"github.vscode-github-actions",
"aaron-bond.better-comments"
]
}
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"detail": "Check the source files for Deno compliancy or regressions."
},
{
"type": "bun",
"type": "npm",
"script": "bun test",
"label": "Test 🧪",
"detail": "Run the test suites for all publicly exported functions."
},
{
"type": "bun",
"type": "npm",
"script": "bun run build.ts",
"detail": "Build library and types to the local filesystem. For development only.",
"label": "Build 🏗",
Expand Down
Empty file added build.md
Empty file.
2 changes: 1 addition & 1 deletion build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ await build({
target: "node",
external: ["culori"],
naming: "node/huetiful.esm.js",
}).then(logger("Node"));
}).then(logger("Node"))
await $`bun tsup --format=esm ./lib/index.ts --dts-only --outDir=./build`;
await $`du -sh build/*`;
Binary file modified bun.lockb
Binary file not shown.
15 changes: 15 additions & 0 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading