Compare commits

...

3 commits

Author SHA1 Message Date
D. Moonfire 8e1c20bf04 chore: v0.1.0 2024-03-22 01:11:14 -05:00
D. Moonfire 4167c34557 fix: corrected package dependency 2024-03-22 01:10:36 -05:00
D. Moonfire deabeac479 build: updating setup flake 2024-03-22 01:08:52 -05:00
6 changed files with 46 additions and 33 deletions

3
.gitignore vendored
View file

@ -10,3 +10,6 @@ node_modules/
/.prettierrc.json
/lefthook.yml
/.conform.yaml
# mfgames-project-setup: ignore-files
/.direnv/

4
.prettierignore Normal file
View file

@ -0,0 +1,4 @@
# mfgames-project-setup: ignore-files
/LICENSE.md
/DCO.md

1
DCO.md
View file

@ -6,6 +6,7 @@ Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:

View file

@ -142,11 +142,11 @@
"nixpkgs": "nixpkgs"
},
"locked": {
"lastModified": 1707180400,
"narHash": "sha256-Gt+a0EoeMWYFo8Xoct4ToTGuFOV8mxeA8F9QGtbtKjk=",
"lastModified": 1709861835,
"narHash": "sha256-vXuOnCnpm3ii728s9KyNrAwH0wZ6RvQwmN53H55GtdE=",
"ref": "refs/heads/main",
"rev": "9b8c86005fbb122134fc247200de8c30724faaef",
"revCount": 14,
"rev": "6ba1a8e9755ae03287457d5fe9bb3565f7421c4b",
"revCount": 17,
"type": "git",
"url": "https://src.mfgames.com/nixos-contrib/mfgames-project-setup-flake.git"
},
@ -394,12 +394,12 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1708161998,
"narHash": "sha256-6KnemmUorCvlcAvGziFosAVkrlWZGIc6UNT9GUYr0jQ=",
"rev": "84d981bae8b5e783b3b548de505b22880559515f",
"revCount": 555825,
"lastModified": 1710951922,
"narHash": "sha256-FOOBJ3DQenLpTNdxMHR2CpGZmYuctb92gF0lpiirZ30=",
"rev": "f091af045dff8347d66d186a62d42aceff159456",
"revCount": 556873,
"type": "tarball",
"url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.2311.555825%2Brev-84d981bae8b5e783b3b548de505b22880559515f/018dbaaf-4db4-7aaa-85f3-0cf000e0264b/source.tar.gz"
"url": "https://api.flakehub.com/f/pinned/NixOS/nixpkgs/0.2311.556873%2Brev-f091af045dff8347d66d186a62d42aceff159456/018e6058-baa0-75b7-880b-d3c87ae30465/source.tar.gz"
},
"original": {
"type": "tarball",

17
package-lock.json generated
View file

@ -1,22 +1,24 @@
{
"name": "@priduck-color-theme/base",
"version": "0.0.2",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@priduck-color-theme/base",
"version": "0.0.2",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"@priduck-color-theme/theme": "^0.0.0",
"@priduck-color-theme/cli": "^0.0.1"
},
"devDependencies": {
"mkdirp": "^3.0.1"
}
},
"node_modules/@priduck-color-theme/theme": {
"version": "0.0.0",
"resolved": "https://src.mfgames.com/api/packages/priduck-color-theme/npm/%40priduck-color-theme%2Ftheme/-/0.0.0/theme-0.0.0.tgz",
"integrity": "sha512-Aqq0bjYzHYX8htYj5h04vA0SgsNmhbN6YVdiwLMpYZWFr56023lrGyV9mEqT4MyaloFk93tcUybVkc2qGSkf7A==",
"node_modules/@priduck-color-theme/cli": {
"version": "0.0.1",
"resolved": "https://src.mfgames.com/api/packages/priduck-color-theme/npm/%40priduck-color-theme%2Fcli/-/0.0.1/cli-0.0.1.tgz",
"integrity": "sha512-AG8oVYsPwB10DOvvlBSSRee1lrQ5tB5755qvkTwsU7atoZR6EeOjNTPenzMWgXP0zHfrBU0cjbGYygaRHmZzgQ==",
"license": "MIT",
"dependencies": {
"yargs": "^17.7.2"
@ -109,6 +111,7 @@
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz",
"integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==",
"dev": true,
"bin": {
"mkdirp": "dist/cjs/src/bin.js"
},

View file

@ -1,6 +1,6 @@
{
"name": "@priduck-color-theme/base",
"version": "0.0.2",
"version": "0.1.0",
"description": "A color-theme based on a single hue in the LCH colorspace.",
"repository": {
"type": "git",
@ -12,8 +12,10 @@
],
"author": "D. Moonfire",
"license": "MIT",
"dependencies": {
"@priduck-color-theme/theme": "^0.0.0",
"devDependencies": {
"mkdirp": "^3.0.1"
},
"dependencies": {
"@priduck-color-theme/cli": "^0.0.1"
}
}