sass-embedded-darwin-x64 1.54.4

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-darwin-x64`
2
+
3
+ This is the **darwin-x64** binary for [`sass-embedded`](https://www.npmjs.com/package/sass-embedded)
@@ -0,0 +1,17 @@
1
+ #!/bin/sh
2
+
3
+ # This script drives the standalone sass_embedded package, which bundles together a
4
+ # Dart executable and a snapshot of sass_embedded.
5
+
6
+ follow_links() {
7
+ file="$1"
8
+ while [ -h "$file" ]; do
9
+ # On Mac OS, readlink -f doesn't work.
10
+ file="$(readlink "$file")"
11
+ done
12
+ echo "$file"
13
+ }
14
+
15
+ # Unlike $0, $BASH_SOURCE points to the absolute path of this file.
16
+ path=`dirname "$(follow_links "$0")"`
17
+ exec "$path/src/dart" "$path/src/dart-sass-embedded.snapshot" "$@"