We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 66bdb45 + 650dc78 commit 0ed3475Copy full SHA for 0ed3475
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "scss-bundle",
3
- "version": "3.1.0",
+ "version": "3.1.1",
4
"description": "Bundling SCSS files to one bundled file.",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
src/cli/main.ts
@@ -140,8 +140,8 @@ async function main(argv: string[]): Promise<void> {
140
Log.info("Waiting for changes...");
141
});
142
143
- if (config.rootDir) {
144
- Log.warn("rootDir property is missing, using cwd.");
+ if (!config.rootDir) {
+ Log.warn(`rootDir property is missing in config, using current working directory: ${process.cwd()}`);
145
}
146
147
const watchFolder = config.rootDir ?? process.cwd();
0 commit comments