You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
Say I have test.css, then in same directory, I run node-sass -w ./ -o ./ (Watch files in directory)
It will watch changes in test.css and this only happens in watch mode.
But non-watch mode node-sass ./ -o ./ will give No input file was found. , which is as expected.
That is to say, node-sass will also watch all generated css files from sass/scss files in directory mode.
Say I have
test.css
, then in same directory, I runnode-sass -w ./ -o ./
(Watch files in directory)It will watch changes in test.css and this only happens in watch mode.
But non-watch mode
node-sass ./ -o ./
will giveNo input file was found.
, which is as expected.That is to say, node-sass will also watch all generated css files from sass/scss files in directory mode.
Is this a bug or by design?
npm -v
): 6.9.0node -v
): v10.15.0node -p process.versions
):{ http_parser: '2.8.0',
node: '10.15.0',
v8: '6.8.275.32-node.45',
uv: '1.23.2',
zlib: '1.2.11',
ares: '1.15.0',
modules: '64',
nghttp2: '1.34.0',
napi: '3',
openssl: '1.1.0j',
icu: '62.1',
unicode: '11.0',
cldr: '33.1',
tz: '2018e' }
node -p process.platform
):win32node -p process.arch
):x64node -p "require('node-sass').info"
): Cannot find module 'node-sass'npm ls node-sass
): 4.11.0The text was updated successfully, but these errors were encountered: