sheetloaf 1.2.0-beta.1 → 1.2.0
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/dist/index.js +3 -0
- package/package.json +1 -2
package/dist/index.js
CHANGED
|
@@ -132,6 +132,9 @@ function watch(source) {
|
|
|
132
132
|
}
|
|
133
133
|
function renderSass(fileName) {
|
|
134
134
|
return __awaiter(this, void 0, void 0, function* () {
|
|
135
|
+
if (usingStdin === false) {
|
|
136
|
+
console.log(`Rendering ${fileName}...`);
|
|
137
|
+
}
|
|
135
138
|
const destination = fileFinder.buildDestinationPath(fileName, sheetloaf.opts().output, sheetloaf.opts().dir, sheetloaf.opts().base, sheetloaf.opts().ext, usingStdin);
|
|
136
139
|
try {
|
|
137
140
|
if (sheetloaf.opts().async === true) {
|
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sheetloaf",
|
|
3
|
-
"version": "1.2.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "freshmade stylesheets for the whole family.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"sheetloaf": "./dist/index.js"
|
|
8
8
|
},
|
|
9
|
-
"type": "module",
|
|
10
9
|
"scripts": {
|
|
11
10
|
"build:development": "tsc --watch",
|
|
12
11
|
"build:production": "tsc",
|