routie dev init since i didn't adhere to any proper guidance up until now

This commit is contained in:
2026-04-29 22:27:29 -06:00
commit e1dabb71e2
15301 changed files with 3562618 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
# `sass-embedded-darwin-arm64`
This is the **darwin-arm64** binary for [`sass-embedded`](https://www.npmjs.com/package/sass-embedded)
+20
View File
@@ -0,0 +1,20 @@
#!/bin/sh
# This script drives the standalone dart-sass package, which bundles together a
# Dart executable and a snapshot of dart-sass.
follow_links() {
# Use `readlink -f` if it exists, but fall back to manually following symlnks
# for systems (like older Mac OS) where it doesn't.
file="$1"
if readlink -f "$file" 2>&-; then return; fi
while [ -h "$file" ]; do
file="$(readlink "$file")"
done
echo "$file"
}
# Unlike $0, $BASH_SOURCE points to the absolute path of this file.
path=`dirname "$(follow_links "$0")"`
exec "$path/src/dart" "$path/src/sass.snapshot" "$@"
File diff suppressed because it is too large Load Diff
Binary file not shown.
Binary file not shown.
+20
View File
@@ -0,0 +1,20 @@
{
"name": "sass-embedded-darwin-arm64",
"version": "1.99.0",
"description": "The darwin-arm64 binary for sass-embedded",
"repository": "sass/embedded-host-node",
"author": "Google Inc.",
"license": "MIT",
"files": [
"dart-sass/**/*"
],
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin"
],
"cpu": [
"arm64"
]
}