@punkfairie/98.css 1.1.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.devenv/load-exports +1 -0
- package/.devenv/root +1 -0
- package/.devenv/tasks.db +0 -0
- package/.devenv/tasks.db-shm +0 -0
- package/.devenv/tasks.db-wal +0 -0
- package/.direnv/bin/nix-direnv-reload +19 -0
- package/.direnv/flake-profile-a5d5b61aa8a61b7d9d765e1daf971a9a578f1cfa.rc +2228 -0
- package/.editorconfig +18 -0
- package/.envrc +17 -0
- package/LICENSE +7 -0
- package/README.md +76 -0
- package/build.js +81 -0
- package/dist/98.css +2 -0
- package/dist/98.css.map +1 -0
- package/dist/docs.css +152 -0
- package/dist/icon.png +0 -0
- package/dist/index.html +1673 -0
- package/dist/index.html.ejs +1129 -0
- package/dist/ms_sans_serif.woff +0 -0
- package/dist/ms_sans_serif.woff2 +0 -0
- package/dist/ms_sans_serif_bold.woff +0 -0
- package/dist/ms_sans_serif_bold.woff2 +0 -0
- package/dist/vs.css +67 -0
- package/dist/window.png +0 -0
- package/dist/zoom.png +0 -0
- package/docs/docs.css +152 -0
- package/docs/icon.png +0 -0
- package/docs/index.html.ejs +1129 -0
- package/docs/vs.css +67 -0
- package/docs/window.png +0 -0
- package/docs/zoom.png +0 -0
- package/flake.nix +60 -0
- package/fonts/converted/ms_sans_serif.woff +0 -0
- package/fonts/converted/ms_sans_serif.woff2 +0 -0
- package/fonts/converted/ms_sans_serif_bold.woff +0 -0
- package/fonts/converted/ms_sans_serif_bold.woff2 +0 -0
- package/fonts/src/ms-sans-serif/MS Sans Serif.ttf +0 -0
- package/fonts/src/ms-sans-serif/license.txt +4 -0
- package/fonts/src/ms-sans-serif/readme.txt +26 -0
- package/fonts/src/ms-sans-serif-bold/MS Sans Serif Bold.ttf +0 -0
- package/fonts/src/ms-sans-serif-bold/license.txt +4 -0
- package/fonts/src/ms-sans-serif-bold/readme.txt +26 -0
- package/icon/button-down-active.svg +5 -0
- package/icon/button-down.svg +8 -0
- package/icon/button-left.svg +8 -0
- package/icon/button-right.svg +8 -0
- package/icon/button-up.svg +8 -0
- package/icon/checkmark-disabled.svg +3 -0
- package/icon/checkmark.svg +3 -0
- package/icon/close.svg +3 -0
- package/icon/groupbox-border.svg +4 -0
- package/icon/help.svg +8 -0
- package/icon/indicator-horizontal.svg +6 -0
- package/icon/indicator-rectangle-horizontal.svg +6 -0
- package/icon/maximize-disabled.svg +4 -0
- package/icon/maximize.svg +3 -0
- package/icon/minimize.svg +3 -0
- package/icon/radio-border-disabled.svg +7 -0
- package/icon/radio-border.svg +8 -0
- package/icon/radio-dot-disabled.svg +3 -0
- package/icon/radio-dot.svg +3 -0
- package/icon/restore.svg +10 -0
- package/icon/scrollbar-background.svg +4 -0
- package/icon/sunken-panel-border.svg +10 -0
- package/now.json +4 -0
- package/package.json +48 -0
- package/server.js +16 -0
- package/style.css +1052 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/.devenv/root
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/Users/marley/hackin/98.css
|
package/.devenv/tasks.db
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
set -e
|
|
3
|
+
if [[ ! -d "/Users/marley/hackin/98.css" ]]; then
|
|
4
|
+
echo "Cannot find source directory; Did you move it?"
|
|
5
|
+
echo "(Looking for "/Users/marley/hackin/98.css")"
|
|
6
|
+
echo 'Cannot force reload with this script - use "direnv reload" manually and then try again'
|
|
7
|
+
exit 1
|
|
8
|
+
fi
|
|
9
|
+
|
|
10
|
+
# rebuild the cache forcefully
|
|
11
|
+
_nix_direnv_force_reload=1 direnv exec "/Users/marley/hackin/98.css" true
|
|
12
|
+
|
|
13
|
+
# Update the mtime for .envrc.
|
|
14
|
+
# This will cause direnv to reload again - but without re-building.
|
|
15
|
+
touch "/Users/marley/hackin/98.css/.envrc"
|
|
16
|
+
|
|
17
|
+
# Also update the timestamp of whatever profile_rc we have.
|
|
18
|
+
# This makes sure that we know we are up to date.
|
|
19
|
+
touch -r "/Users/marley/hackin/98.css/.envrc" "/Users/marley/hackin/98.css/.direnv"/*.rc
|