Hi all, I've run into this problem. If anyone knows how to fix it?
C:\Users\walter\fbasic1>foundation watch
foundation-sites-template@1.0.0 start C:\Users\walter\fbasic1
gulp
gulp[11396]: src\node_contextify.cc:627: Assertion args[1]->IsString()' failed.
1: 00007FF78A523D05
2: 00007FF78A4FDD46
3: 00007FF78A4FDE11
4: 00007FF78A4D382A
5: 00007FF78A8E2AA2
6: 00007FF78A8E3CB8
7: 00007FF78A8E2FED
8: 00007FF78A8E2F0B
9: 0000010AB125C6C1
Error: foundation-sites-template@1.0.0 start:
gulp`
Exit status 134
at EventEmitter.<anonymous> (C:\Users\walter\AppData\Roaming\npm\node_modules\foundation-cli\node_modules\npm\lib\utils\lifecycle.js:217:16)
at EventEmitter.emit (events.js:182:13)
at ChildProcess.<anonymous> (C:\Users\walter\AppData\Roaming\npm\node_modules\foundation-cli\node_modules\npm\lib\utils\spawn.js:24:14)
at ChildProcess.emit (events.js:182:13)
at maybeClose (internal/child_process.js:961:16)
at Process.ChildProcess._handle.onexit (internal/child_process.js:250:5)
Foundation.addToJquery($)
still be necessary?
@DanielRuf What I mean is, should util/breakpoint
import util/unit
, since it uses functions from that partial. i.e. You either have:
a) util/breakpoint
depends on/imports util/unit
, and you only need to import util/breakpoint
. (graph-like dependencies)
b) util/breakpoint
doesn't import util/unit
, so if you need to use util/breakpoint
, you have to import util/unit
as well. (flat dependencies)
The way it is now, I have to know what util/breakpoint
depends on, and that may change over time (so code could break, in theory). Also, it's hard to know whether or not it's okay to use util/breakpoint
on its own, vs all of util/util
, vs the whole of Foundation.
However, I don't really know what the norm is in Sass. This is obviously how things work in JS, but that behaves differently as well.