sass-embedded-android-arm 1.69.6

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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # `sass-embedded-android-arm`
2
+
3
+ This is the **android-arm** binary for [`sass-embedded`](https://www.npmjs.com/package/sass-embedded)
package/dart-sass/sass ADDED
@@ -0,0 +1,20 @@
1
+ #!/bin/sh
2
+
3
+ # This script drives the standalone dart-sass package, which bundles together a
4
+ # Dart executable and a snapshot of dart-sass.
5
+
6
+ follow_links() {
7
+ # Use `readlink -f` if it exists, but fall back to manually following symlnks
8
+ # for systems (like older Mac OS) where it doesn't.
9
+ file="$1"
10
+ if readlink -f "$file" 2>&-; then return; fi
11
+
12
+ while [ -h "$file" ]; do
13
+ file="$(readlink "$file")"
14
+ done
15
+ echo "$file"
16
+ }
17
+
18
+ # Unlike $0, $BASH_SOURCE points to the absolute path of this file.
19
+ path=`dirname "$(follow_links "$0")"`
20
+ exec "$path/src/dart" "$path/src/sass.snapshot" "$@"