Skip to content

Instantly share code, notes, and snippets.

@hone
Last active December 30, 2023 08:02
Show Gist options
  • Save hone/24b06869b4c1eca701f9 to your computer and use it in GitHub Desktop.
Save hone/24b06869b4c1eca701f9 to your computer and use it in GitHub Desktop.
Getting Started with Single Page Apps on Heroku

Introduction

This tutorial will have you deploying a Single Page App in minutes.

Hang on for a few more minutes to learn how it all works, so you can make the most out of Heroku.

The tutorial assumes that you have:

Set up the toolbelt

In this step you will install the Heroku Toolbelt. This provides you access to the Heroku Command Line Interface (CLI), which can be used for managing and scaling your applications and add-ons. A key part of the toolbelt is the heroku local command, which can help in running your applications locally.

Download the Heroku Toolbelt

Once installed, you can use the heroku command from your command shell.

On Windows, start the Command Prompt (cmd.exe) or Powershell to access the command shell.

Log in using the email address and password you used when creating your Heroku account:

$ heroku login
Enter your Heroku credentials.
Email: me@example.com
Password:
...

Authenticating is required to allow both the heroku and git commands to operate.

Note that if you’re behind a firewall that requires use of a proxy to connect with external HTTP/HTTPS services, you can set the HTTP_PROXY or HTTPS_PROXY environment variables in your local development environment before running the heroku command.

Install the Static CLI Plugin

In order to take advantage of this beta product, we provide a set of commands for the Heroku Toolbelt in the static namespace. To get this, you'll need to install the heroku-cli-static plugin.

$ heroku plugins:install heroku-cli-static

Prepare the app

In this step, you will prepare a simple application that can be deployed.

Execute the following commands to clone the sample application:

$ git clone https://github.com/heroku/wywh.git
$ cd wywh

You now have a functioning git repository that contains a simple application.

Run the app locally

To get the app running, you first need the dependencies for your application. The way this app is setup, the following command will install all the dependencies as well as build the assets into a public/ directory. We'll be using npm which is the node package manager.

$ NODE_ENV=production npm install
> node-sass@3.4.2 install /home/hone/Projects/heroku_work/frontend/apps/wywh/node_modules/node-sass
> node scripts/install.js
...
> heroku-event-signup@1.0.0 postinstall /home/hone/Projects/heroku_work/frontend/apps/wywh
> webpack

Hash: 498f5ec33dc0481ab623
Version: webpack 1.12.13
Time: 21864ms
                                 Asset       Size  Chunks             Chunk Names
  f4769f9bdb7466be65088239c12046d1.eot    20.1 kB          [emitted]
  89889688147bd7575d6327160d64e760.svg     109 kB          [emitted]
  87faad85511847d6d753bd02ab2e607a.svg    1.69 kB          [emitted]
  6df9140f6920c8de454cee4a491a0e01.svg    4.41 kB          [emitted]
  e18bbf611f2a2e43afc071aa2f4e1512.ttf    45.4 kB          [emitted]
 fa2772327f55d8198301fdb8bcfc8158.woff    23.4 kB          [emitted]
448c34a56d699c29117adc64c43affeb.woff2      18 kB          [emitted]
          heroku-event-signup.1.0.0.js     755 kB       0  [emitted]  main
         heroku-event-signup.1.0.0.css    16.1 kB       0  [emitted]  main
                            index.html  699 bytes          [emitted]
   [0] multi main 28 bytes {0} [built]
    + 908 hidden modules
Child extract-text-webpack-plugin:   
                                     Asset     Size  Chunks             Chunk Names
      f4769f9bdb7466be65088239c12046d1.eot  20.1 kB          [emitted]
      89889688147bd7575d6327160d64e760.svg   109 kB          [emitted]
      87faad85511847d6d753bd02ab2e607a.svg  1.69 kB          [emitted]
      6df9140f6920c8de454cee4a491a0e01.svg  4.41 kB          [emitted]
      e18bbf611f2a2e43afc071aa2f4e1512.ttf  45.4 kB          [emitted]
     fa2772327f55d8198301fdb8bcfc8158.woff  23.4 kB          [emitted]
    448c34a56d699c29117adc64c43affeb.woff2    18 kB          [emitted]
        + 10 hidden modules
...

Now start your application locally using the heroku local command, which was installed as part of the Toolbelt:

$ heroku local web
forego | starting web.1 on port 5000
web.1  | Server running at: http://x220:5000

Just like Heroku, heroku local examines the Procfile to determine what to run.

Open http://localhost:5000 with your web browser. You should see your app running locally.

To stop the app from running locally, in the CLI, press Ctrl+C to exit.

Deploy the app

In this step you will deploy the app to Heroku.

Create an app on Heroku, which prepares Heroku to receive your source code.

$ heroku create
Creating sharp-rain-871... done, stack is cedar-14
http://sharp-rain-871.herokuapp.com/ | https://git.heroku.com/sharp-rain-871.git
Git remote heroku added

When you create an app, a git remote (called heroku) is also created and associated with your local git repository.

Heroku generates a random name (in this case sharp-rain-871) for your app, or you can pass a parameter to specify your own app name.

Express is used for serving assets during local development. To deploy this application on Heroku, you'll be using the static buildpack to replace the express server in production. Buildpacks handle the glue code for a specific language or use case. In this case, the static buildpack is used for serving your static assets. To set the buildpack, you need to run:

$ heroku buildpacks:set https://github.com/hone/heroku-buildpack-static

Setting the Root Directory

To start, you can use heroku static:init to bootstrap our static configuration file, static.json. The application builds its assets in the public/ directory.

$ heroku static:init
? Enter the directory of your app: (public_html) public
? Drop `.html` extensions from urls? No
? Path to custom error page from root directory: 
{
  "root": "public",
  "clean_urls": false
}

With the assets built from before by running npm install from above and the newly minted static.json, you're ready to deploy the app. The heroku static:deploy command, bundles up static.json along with the asset directory specified in the static.json.

$ heroku static:deploy
Uploading app
Creating build

-----> Fetching set buildpack https://github.com/hone/heroku-buildpack-static... done
-----> Static HTML app detected
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  838k  100  838k    0     0  9956k      0 --:--:-- --:--:-- --:--:-- 9983k
-----> Installed directory to /app/bin

-----> Discovering process types
       Procfile declares types     -> (none)
       Default types for buildpack -> web

-----> Compressing...
       Done: 1.3M
-----> Launching...
       Released v19
       https://sharp-rain-871.herokuapp.com/ deployed to Heroku

The application is now deployed. Ensure that at least one instance of the app is running:

$ heroku ps:scale web=1

Now visit the app at the URL generated by its app name. As a handy shortcut, you can open the website as follows:

$ heroku open

HTML5 Push State

Push State is used to manipulate the browser history, allowing rich JavaScript applications to ensure URLs continue to be useful. If you try to go to a page that isn't the index, but actually exists:

$ curl -I https://sharp-rain-871.herokuapp.com/conferences/
HTTP/1.1 404 Not Found
Connection: keep-alive
Server: nginx
Date: Wed, 10 Feb 2016 06:56:17 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 162
Via: 1.1 vegur

This can be fixed, but using a custom route. In your static.json, you can add a custom route that redirects all routes to the index.html.

{
  "root": "public",
  "clean_urls": false,
  "routes": {
    "/**": "index.html"
  }
}

With these changes, you can deploy them onto Heroku to have them take effect.

$ curl -I https://sharp-rain-871.herokuapp.com/conferences/
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx
Date: Wed, 10 Feb 2016 07:08:59 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 699
Last-Modified: Wed, 10 Feb 2016 06:41:29 GMT
Vary: Accept-Encoding
Etag: "56badb99-2bb"
Accept-Ranges: bytes
Via: 1.1 vegur

As can be seen, this is the exact same as the index route:

$ curl -I https://sharp-rain-871.herokuapp.com/
HTTP/1.1 200 OK
Connection: keep-alive
Server: nginx
Date: Wed, 10 Feb 2016 07:09:38 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 699
Last-Modified: Wed, 10 Feb 2016 06:41:29 GMT
Vary: Accept-Encoding
Etag: "56badb99-2bb"
Accept-Ranges: bytes
Via: 1.1 vegur

Building Assets on Heroku

Not only can you build locally, but you can also build your assets on Heroku during the deploy process. By doing this, you can advantage of some Heroku Flow features such as Review Apps or GitHub Sync.

You'll be using git to deploy this time instead of the heroku static:deploy command, which is built for local asset building. This means, you'll need to add the static.json file from above to git.

$ git add static.json
$ git commit -m "add static configuration"

You'll also need to remove the Procfile that has an entry for starting the Express server. Instead, the static buildpack will handle creating a web entry.

$ git rm Procfile
$ git commit -m "remove Procfile"

In order to build the assets on Heroku, you'll need to take advantage of multiple buildpacks. This will let you use the Node.js buildpack to build the assets on Heroku and then serve them with the static buildpack.

$ heroku buildpacks:clear
$ heroku buildpacks:add heroku/nodejs
$ heroku buildpacks:add https://github.com/hone/heroku-buildpack-static

With all that, you can now deploy:

$ git push heroku master
Counting objects: 8, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (7/7), done.
Writing objects: 100% (8/8), 773 bytes | 0 bytes/s, done.
Total 8 (delta 3), reused 0 (delta 0)
remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Using set buildpack heroku/nodejs
remote: -----> Node.js app detected
remote:
remote: -----> Creating runtime environment
remote:
remote:        NPM_CONFIG_LOGLEVEL=error
remote:        NPM_CONFIG_PRODUCTION=true
remote:        NODE_ENV=production
remote:        NODE_MODULES_CACHE=true
remote:
remote: -----> Installing binaries
remote:        engines.node (package.json):  ^4.0.0
remote:        engines.npm (package.json):   ^3.0.0
remote:
remote:        Resolving node version ^4.0.0 via semver.io...
remote:        Downloading and installing node 4.3.0...
...
remote: -----> Fetching set buildpack https://github.com/hone/heroku-buildpack-static... done
remote: -----> Static HTML app detected
remote:   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
remote:                                  Dload  Upload   Total   Spent    Left  Speed
remote: 100  838k  100  838k    0     0  11.1M      0 --:--:-- --:--:-- --:--:-- 11.2M
remote: -----> Installed directory to /app/bin
remote:
remote: -----> Discovering process types
remote:        Procfile declares types     -> (none)
remote:        Default types for buildpack -> web
remote:
remote: -----> Compressing...
remote:        Done: 32M
remote: -----> Launching...
remote:        Released v3
remote:        https://sharp-rain-871.herokuapp.com/ deployed to Heroku
remote:
remote: Verifying deploy.... done.
To https://git.heroku.com/sharp-rain-871.git
 * [new branch]      master -> master

You can use heroku open to view the newly deployed app.

Next steps

You now know how to deploy an app.

Here's some recommended reading.

  • Read the static buildpack Readme which lists all the features that can be used.
  • Read How Heroku Works for a technical overview of the concepts you’ll encounter while writing, configuring, deploying and running applications.
@ericfr
Copy link

ericfr commented Jun 19, 2017

getting this error on static:deploy:

heroku static:deploy
TypeError: Path must be a string. Received undefined
at assertPath (path.js:7:11)
at Object.resolve (path.js:1146:7)
at setopts (/Users/eric/.local/share/heroku/plugins/node_modules/glob/common.js:97:21)
at new GlobSync (/Users/eric/.local/share/heroku/plugins/node_modules/glob/sync.js:40:3)
at Function.globSync [as sync] (/Users/eric/.local/share/heroku/plugins/node_modules/glob/sync.js:26:10)
at /Users/eric/.local/share/heroku/plugins/node_modules/archiver-utils/file.js:62:17
at /Users/eric/.local/share/heroku/plugins/node_modules/archiver-utils/file.js:30:19
at Array.forEach (native)
at processPatterns (/Users/eric/.local/share/heroku/plugins/node_modules/archiver-utils/file.js:24:23)
at Object.file.expand (/Users/eric/.local/share/heroku/plugins/node_modules/archiver-utils/file.js:60:17)
at Object.file.expandMapping (/Users/eric/.local/share/heroku/plugins/node_modules/archiver-utils/file.js:94:8)
at /Users/eric/.local/share/heroku/plugins/node_modules/archiver-utils/file.js:159:19
at arrayMap (/Users/eric/.local/share/heroku/plugins/node_modules/lodash/lodash.js:660:23)
at Function.map (/Users/eric/.local/share/heroku/plugins/node_modules/lodash/lodash.js:9571:14)
at interceptor (/Users/eric/.local/share/heroku/plugins/node_modules/lodash/lodash.js:16970:35)
at thru (/Users/eric/.local/share/heroku/plugins/node_modules/lodash/lodash.js:8812:14) 'error'

@xavriley
Copy link

@ericfr (or anyone else reading) the published https://www.npmjs.com/package/heroku-cli-static npm package needs to be rebuilt and released to work with the newer version of node released with the latest Heroku CLI.

As a workaround you can still install the plugin locally by running

git clone https://github.com/hone/heroku-cli-static.git
heroku plugins:link .

For anyone reading this in future, please check for new releases on npm before resorting to this command

@bhushangahire
Copy link

How can I use ENV config variables?

@gabrielperales
Copy link

gabrielperales commented Dec 4, 2017

I followed the tutorial but seems like it is not working now. I'm getting an Application Error, but I can't see any error in the logs.

If I run heroku static:deploy I just see this logs:

(node:21409) DeprecationWarning: Archiver.bulk() deprecated since 0.21.0
Uploading app

@lnmunhoz
Copy link

lnmunhoz commented Dec 14, 2017

@gabrielperales Same issue here :/

@stungeye
Copy link

stungeye commented Jan 5, 2019

Thanks! This buildpack worked really nicely for a vanilla JS SPA I am bundling using Parcel Js.

The heroku static:init command wasn't found after adding the buildback, so I manually created the static.json file.

More details in the project README: https://github.com/stungeye/paper-questions/

@six-edge
Copy link

Heroku really needs to up their game with support of this mentioned buildpack.. its last release is over 2 years ago and the nginx version is getting old. Please heroku... look after your buildpacks and community a bit better! Thanks 🤪
https://github.com/heroku/heroku-buildpack-static

@anzuj
Copy link

anzuj commented May 20, 2020

heroku static:deploy no longer a command, so this seems awfully out of date

@wbarnard81
Copy link

heroku static:init >> is not a heroku command.

@cds
Copy link

cds commented Sep 18, 2020

$ NODE_ENV=production npm install

 ✔  1077  14:17:06
npm WARN deprecated request@2.88.2: request has been deprecated, see request/request#3142
npm WARN deprecated har-validator@5.1.5: this library is no longer supported
npm WARN deprecated circular-json@0.3.3: CircularJSON is in maintenance only, flatted is its successor.

node-sass@3.13.1 install /Users/csangale/Desktop/wywh/node_modules/node-sass
node scripts/install.js

Downloading binary from https://github.com/sass/node-sass/releases/download/v3.13.1/darwin-x64-83_binding.node
Cannot download "https://github.com/sass/node-sass/releases/download/v3.13.1/darwin-x64-83_binding.node":

ESOCKETTIMEDOUT

Hint: If github.com is not accessible in your location
try setting a proxy via HTTP_PROXY, e.g.

  export HTTP_PROXY=http://example.com:1234

or configure npm proxy via

  npm config set proxy http://example.com:8080

node-sass@3.13.1 postinstall /Users/csangale/Desktop/wywh/node_modules/node-sass
node scripts/build.js

Building: /usr/local/Cellar/node/14.5.0/bin/node /Users/csangale/Desktop/wywh/node_modules/node-gyp/bin/node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=
gyp info it worked if it ends with ok
gyp verb cli [
gyp verb cli '/usr/local/Cellar/node/14.5.0/bin/node',
gyp verb cli '/Users/csangale/Desktop/wywh/node_modules/node-gyp/bin/node-gyp.js',
gyp verb cli 'rebuild',
gyp verb cli '--verbose',
gyp verb cli '--libsass_ext=',
gyp verb cli '--libsass_cflags=',
gyp verb cli '--libsass_ldflags=',
gyp verb cli '--libsass_library='
gyp verb cli ]
gyp info using node-gyp@3.8.0
gyp info using node@14.5.0 | darwin | x64
gyp verb command rebuild []
gyp verb command clean []
gyp verb clean removing "build" directory
gyp verb command configure []
gyp verb check python checking for Python executable "python2" in the PATH
gyp verb which succeeded python2 /usr/bin/python2
gyp verb check python version /usr/bin/python2 -c "import sys; print "2.7.16 gyp verb check python version .%s.%s" % sys.version_info[:3];" returned: %j
gyp verb get node dir no --target version specified, falling back to host node version: 14.5.0
gyp verb command install [ '14.5.0' ]
gyp verb install input version string "14.5.0"
gyp verb install installing version: 14.5.0
gyp verb install --ensure was passed, so won't reinstall if already installed
gyp verb install version is already installed, need to check "installVersion"
gyp verb got "installVersion" 9
gyp verb needs "installVersion" 9
gyp verb install version is good
gyp verb get node dir target node version installed: 14.5.0
gyp verb build dir attempting to create "build" dir: /Users/csangale/Desktop/wywh/node_modules/node-sass/build
gyp verb build dir "build" dir needed to be created? /Users/csangale/Desktop/wywh/node_modules/node-sass/build
gyp verb build/config.gypi creating config file
gyp verb build/config.gypi writing out config file: /Users/csangale/Desktop/wywh/node_modules/node-sass/build/config.gypi
gyp verb config.gypi checking for gypi file: /Users/csangale/Desktop/wywh/node_modules/node-sass/config.gypi
gyp verb common.gypi checking for gypi file: /Users/csangale/Desktop/wywh/node_modules/node-sass/common.gypi
gyp verb gyp gyp format was not specified; forcing "make"
gyp info spawn /usr/bin/python2
gyp info spawn args [
gyp info spawn args '/Users/csangale/Desktop/wywh/node_modules/node-gyp/gyp/gyp_main.py',
gyp info spawn args 'binding.gyp',
gyp info spawn args '-f',
gyp info spawn args 'make',
gyp info spawn args '-I',
gyp info spawn args '/Users/csangale/Desktop/wywh/node_modules/node-sass/build/config.gypi',
gyp info spawn args '-I',
gyp info spawn args '/Users/csangale/Desktop/wywh/node_modules/node-gyp/addon.gypi',
gyp info spawn args '-I',
gyp info spawn args '/Users/csangale/.node-gyp/14.5.0/include/node/common.gypi',
gyp info spawn args '-Dlibrary=shared_library',
gyp info spawn args '-Dvisibility=default',
gyp info spawn args '-Dnode_root_dir=/Users/csangale/.node-gyp/14.5.0',
gyp info spawn args '-Dnode_gyp_dir=/Users/csangale/Desktop/wywh/node_modules/node-gyp',
gyp info spawn args '-Dnode_lib_file=/Users/csangale/.node-gyp/14.5.0/<(target_arch)/node.lib',
gyp info spawn args '-Dmodule_root_dir=/Users/csangale/Desktop/wywh/node_modules/node-sass',
gyp info spawn args '-Dnode_engine=v8',
gyp info spawn args '--depth=.',
gyp info spawn args '--no-parallel',
gyp info spawn args '--generator-output',
gyp info spawn args 'build',
gyp info spawn args '-Goutput_dir=.'
gyp info spawn args ]
gyp verb command build []
gyp verb build type Release
gyp verb architecture x64
gyp verb node dev dir /Users/csangale/.node-gyp/14.5.0
gyp verb which succeeded for make /usr/bin/make
gyp info spawn make
gyp info spawn args [ 'V=1', 'BUILDTYPE=Release', '-C', 'build' ]
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/ast.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/ast.o ../src/libsass/src/ast.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/base64vlq.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/base64vlq.o ../src/libsass/src/base64vlq.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/bind.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/bind.o ../src/libsass/src/bind.cpp
cc '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/cencode.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/cencode.o ../src/libsass/src/cencode.c
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/color_maps.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/color_maps.o ../src/libsass/src/color_maps.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/constants.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/constants.o ../src/libsass/src/constants.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/context.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/context.o ../src/libsass/src/context.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/cssize.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/cssize.o ../src/libsass/src/cssize.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/emitter.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/emitter.o ../src/libsass/src/emitter.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/environment.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/environment.o ../src/libsass/src/environment.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/error_handling.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/error_handling.o ../src/libsass/src/error_handling.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/eval.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/eval.o ../src/libsass/src/eval.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/expand.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/expand.o ../src/libsass/src/expand.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/extend.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/extend.o ../src/libsass/src/extend.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/file.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/file.o ../src/libsass/src/file.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/functions.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/functions.o ../src/libsass/src/functions.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/inspect.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/inspect.o ../src/libsass/src/inspect.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/json.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/json.o ../src/libsass/src/json.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/lexer.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/lexer.o ../src/libsass/src/lexer.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/listize.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/listize.o ../src/libsass/src/listize.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/memory_manager.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/memory_manager.o ../src/libsass/src/memory_manager.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/node.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/node.o ../src/libsass/src/node.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/output.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/output.o ../src/libsass/src/output.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/parser.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/parser.o ../src/libsass/src/parser.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/plugins.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/plugins.o ../src/libsass/src/plugins.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/position.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/position.o ../src/libsass/src/position.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/prelexer.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/prelexer.o ../src/libsass/src/prelexer.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/remove_placeholders.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/remove_placeholders.o ../src/libsass/src/remove_placeholders.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/sass.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/sass.o ../src/libsass/src/sass.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/sass2scss.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/sass2scss.o ../src/libsass/src/sass2scss.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/sass_context.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/sass_context.o ../src/libsass/src/sass_context.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/sass_functions.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/sass_functions.o ../src/libsass/src/sass_functions.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/sass_util.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/sass_util.o ../src/libsass/src/sass_util.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/sass_values.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/sass_values.o ../src/libsass/src/sass_values.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/source_map.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/source_map.o ../src/libsass/src/source_map.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/to_c.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/to_c.o ../src/libsass/src/to_c.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/to_value.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/to_value.o ../src/libsass/src/to_value.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/units.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/units.o ../src/libsass/src/units.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/utf8_string.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/utf8_string.o ../src/libsass/src/utf8_string.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/util.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/util.o ../src/libsass/src/util.cpp
c++ '-DNODE_GYP_MODULE_NAME=libsass' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DLIBSASS_VERSION="3.3.6"' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=c++11 -stdlib=libc++ -fno-strict-aliasing -MMD -MF ./Release/.deps/Release/obj.target/libsass/src/libsass/src/values.o.d.raw -c -o Release/obj.target/libsass/src/libsass/src/values.o ../src/libsass/src/values.cpp
rm -f Release/sass.a && ./gyp-mac-tool filter-libtool libtool -static -o Release/sass.a Release/obj.target/libsass/src/libsass/src/ast.o Release/obj.target/libsass/src/libsass/src/base64vlq.o Release/obj.target/libsass/src/libsass/src/bind.o Release/obj.target/libsass/src/libsass/src/cencode.o Release/obj.target/libsass/src/libsass/src/color_maps.o Release/obj.target/libsass/src/libsass/src/constants.o Release/obj.target/libsass/src/libsass/src/context.o Release/obj.target/libsass/src/libsass/src/cssize.o Release/obj.target/libsass/src/libsass/src/emitter.o Release/obj.target/libsass/src/libsass/src/environment.o Release/obj.target/libsass/src/libsass/src/error_handling.o Release/obj.target/libsass/src/libsass/src/eval.o Release/obj.target/libsass/src/libsass/src/expand.o Release/obj.target/libsass/src/libsass/src/extend.o Release/obj.target/libsass/src/libsass/src/file.o Release/obj.target/libsass/src/libsass/src/functions.o Release/obj.target/libsass/src/libsass/src/inspect.o Release/obj.target/libsass/src/libsass/src/json.o Release/obj.target/libsass/src/libsass/src/lexer.o Release/obj.target/libsass/src/libsass/src/listize.o Release/obj.target/libsass/src/libsass/src/memory_manager.o Release/obj.target/libsass/src/libsass/src/node.o Release/obj.target/libsass/src/libsass/src/output.o Release/obj.target/libsass/src/libsass/src/parser.o Release/obj.target/libsass/src/libsass/src/plugins.o Release/obj.target/libsass/src/libsass/src/position.o Release/obj.target/libsass/src/libsass/src/prelexer.o Release/obj.target/libsass/src/libsass/src/remove_placeholders.o Release/obj.target/libsass/src/libsass/src/sass.o Release/obj.target/libsass/src/libsass/src/sass2scss.o Release/obj.target/libsass/src/libsass/src/sass_context.o Release/obj.target/libsass/src/libsass/src/sass_functions.o Release/obj.target/libsass/src/libsass/src/sass_util.o Release/obj.target/libsass/src/libsass/src/sass_values.o Release/obj.target/libsass/src/libsass/src/source_map.o Release/obj.target/libsass/src/libsass/src/to_c.o Release/obj.target/libsass/src/libsass/src/to_value.o Release/obj.target/libsass/src/libsass/src/units.o Release/obj.target/libsass/src/libsass/src/utf8_string.o Release/obj.target/libsass/src/libsass/src/util.o Release/obj.target/libsass/src/libsass/src/values.o
c++ '-DNODE_GYP_MODULE_NAME=binding' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DBUILDING_NODE_EXTENSION' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../../nan -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=gnu++1y -stdlib=libc++ -fno-rtti -fno-exceptions -std=c++11 -MMD -MF ./Release/.deps/Release/obj.target/binding/src/binding.o.d.raw -c -o Release/obj.target/binding/src/binding.o ../src/binding.cpp
../src/binding.cpp:246:30: warning: 'Call' is deprecated [-Wdeprecated-declarations]
ctx_w->success_callback->Call(0, 0);
^
../../nan/nan.h:1741:3: note: 'Call' has been explicitly marked deprecated here
NAN_DEPRECATED inline v8::Localv8::Value
^
../../nan/nan.h:106:40: note: expanded from macro 'NAN_DEPRECATED'

define NAN_DEPRECATED attribute((deprecated))

                                   ^

../src/binding.cpp:254:28: warning: 'Call' is deprecated [-Wdeprecated-declarations]
ctx_w->error_callback->Call(1, argv);
^
../../nan/nan.h:1741:3: note: 'Call' has been explicitly marked deprecated here
NAN_DEPRECATED inline v8::Localv8::Value
^
../../nan/nan.h:106:40: note: expanded from macro 'NAN_DEPRECATED'

define NAN_DEPRECATED attribute((deprecated))

                                   ^

In file included from ../src/binding.cpp:3:
In file included from ../src/sass_context_wrapper.h:9:
In file included from ../src/custom_function_bridge.h:7:
../src/callback_bridge.h:162:21: warning: 'Call' is deprecated [-Wdeprecated-declarations]
bridge->callback->Call(argv_v8.size(), &argv_v8[0]);
^
../src/callback_bridge.h:68:65: note: in instantiation of member function 'CallbackBridge<Sass_Value *, void
*>::dispatched_async_uv_callback' requested here
uv_async_init(uv_default_loop(), this->async, (uv_async_cb) dispatched_async_uv_callback);
^
../src/custom_function_bridge.h:11:70: note: in instantiation of member function 'CallbackBridge<Sass_Value *,
void >::CallbackBridge' requested here
CustomFunctionBridge(v8::Localv8::Function cb, bool is_sync) : CallbackBridge<Sass_Value
>(cb, is_sync) {}
^
../../nan/nan.h:1741:3: note: 'Call' has been explicitly marked deprecated here
NAN_DEPRECATED inline v8::Localv8::Value
^
../../nan/nan.h:106:40: note: expanded from macro 'NAN_DEPRECATED'

define NAN_DEPRECATED attribute((deprecated))

                                   ^

In file included from ../src/binding.cpp:3:
In file included from ../src/sass_context_wrapper.h:9:
In file included from ../src/custom_function_bridge.h:7:
../src/callback_bridge.h:162:21: warning: 'Call' is deprecated [-Wdeprecated-declarations]
bridge->callback->Call(argv_v8.size(), &argv_v8[0]);
^
../src/callback_bridge.h:68:65: note: in instantiation of member function 'CallbackBridge<Sass_Import **, void
*>::dispatched_async_uv_callback' requested here
uv_async_init(uv_default_loop(), this->async, (uv_async_cb) dispatched_async_uv_callback);
^
../src/custom_importer_bridge.h:13:70: note: in instantiation of member function 'CallbackBridge<Sass_Import **,
void *>::CallbackBridge' requested here
CustomImporterBridge(v8::Localv8::Function cb, bool is_sync) : CallbackBridge(cb, ...
^
../../nan/nan.h:1741:3: note: 'Call' has been explicitly marked deprecated here
NAN_DEPRECATED inline v8::Localv8::Value
^
../../nan/nan.h:106:40: note: expanded from macro 'NAN_DEPRECATED'

define NAN_DEPRECATED attribute((deprecated))

                                   ^

In file included from ../src/binding.cpp:3:
In file included from ../src/sass_context_wrapper.h:9:
In file included from ../src/custom_function_bridge.h:7:
../src/callback_bridge.h:110:23: warning: 'Call' is deprecated [-Wdeprecated-declarations]
this->callback->Call(argv_v8.size(), &argv_v8[0])
^
../src/binding.cpp:19:16: note: in instantiation of member function 'CallbackBridge<Sass_Import **, void
*>::operator()' requested here
return bridge(argv);
^
../../nan/nan.h:1741:3: note: 'Call' has been explicitly marked deprecated here
NAN_DEPRECATED inline v8::Localv8::Value
^
../../nan/nan.h:106:40: note: expanded from macro 'NAN_DEPRECATED'

define NAN_DEPRECATED attribute((deprecated))

                                   ^

In file included from ../src/binding.cpp:3:
In file included from ../src/sass_context_wrapper.h:9:
In file included from ../src/custom_function_bridge.h:7:
../src/callback_bridge.h:110:23: warning: 'Call' is deprecated [-Wdeprecated-declarations]
this->callback->Call(argv_v8.size(), &argv_v8[0])
^
../src/binding.cpp:32:16: note: in instantiation of member function 'CallbackBridge<Sass_Value *, void
*>::operator()' requested here
return bridge(argv);
^
../../nan/nan.h:1741:3: note: 'Call' has been explicitly marked deprecated here
NAN_DEPRECATED inline v8::Localv8::Value
^
../../nan/nan.h:106:40: note: expanded from macro 'NAN_DEPRECATED'

define NAN_DEPRECATED attribute((deprecated))

                                   ^

6 warnings generated.
c++ '-DNODE_GYP_MODULE_NAME=binding' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DBUILDING_NODE_EXTENSION' -I/Users/csangale/.node-gyp/14.5.0/include/node -I/Users/csangale/.node-gyp/14.5.0/src -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/config -I/Users/csangale/.node-gyp/14.5.0/deps/openssl/openssl/include -I/Users/csangale/.node-gyp/14.5.0/deps/uv/include -I/Users/csangale/.node-gyp/14.5.0/deps/zlib -I/Users/csangale/.node-gyp/14.5.0/deps/v8/include -I../../nan -I../src/libsass/include -O3 -gdwarf-2 -mmacosx-version-min=10.7 -arch x86_64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=gnu++1y -stdlib=libc++ -fno-rtti -fno-exceptions -std=c++11 -MMD -MF ./Release/.deps/Release/obj.target/binding/src/create_string.o.d.raw -c -o Release/obj.target/binding/src/create_string.o ../src/create_string.cpp
../src/create_string.cpp:17:25: error: no matching constructor for initialization of 'v8::String::Utf8Value'
v8::String::Utf8Value string(value);
^ ~~~~~
/Users/csangale/.node-gyp/14.5.0/include/node/v8.h:3290:5: note: candidate constructor not viable: no known
conversion from 'v8::Localv8::Value' to 'const v8::String::Utf8Value' for 1st argument
Utf8Value(const Utf8Value&) = delete;
^
/Users/csangale/.node-gyp/14.5.0/include/node/v8.h:3283:5: note: candidate constructor not viable: requires 2
arguments, but 1 was provided
Utf8Value(Isolate* isolate, Localv8::Value obj);
^
1 error generated.
make: *** [Release/obj.target/binding/src/create_string.o] Error 1
gyp ERR! build error
gyp ERR! stack Error: make failed with exit code: 2
gyp ERR! stack at ChildProcess.onExit (/Users/csangale/Desktop/wywh/node_modules/node-gyp/lib/build.js:262:23)
gyp ERR! stack at ChildProcess.emit (events.js:314:20)
gyp ERR! stack at Process.ChildProcess._handle.onexit (internal/child_process.js:276:12)
gyp ERR! System Darwin 19.5.0
gyp ERR! command "/usr/local/Cellar/node/14.5.0/bin/node" "/Users/csangale/Desktop/wywh/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="
gyp ERR! cwd /Users/csangale/Desktop/wywh/node_modules/node-sass
gyp ERR! node -v v14.5.0
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
Build failed with error code: 1
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! node-sass@3.13.1 postinstall: node scripts/build.js
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the node-sass@3.13.1 postinstall script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! /Users/csangale/.npm/_logs/2020-09-18T08_51_04_796Z-debug.log

@shem8
Copy link

shem8 commented Dec 10, 2020

Thank you for this detailed explanation. We have a similar but a bit different set up:
We have a node app that serves a react app website, and it's all in the same repo.
Right now what we do is using the node buildpack, and in the build phase we building the client assets:

    "build": "cd client && yarn install && yarn build && cd .. && yarn compress",

The problem with this approach is that we don't leverage the cache features for the client node modules. Maybe if we'll build a dedicated CRA buildpack and use it before the node buildpack, it will solve the problem, what do you say?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment