sheetloaf 1.24.1-beta.0 → 1.25.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 +1 -1
- package/package.json +10 -15
package/dist/index.js
CHANGED
|
@@ -48,7 +48,7 @@ const fileFinder = __importStar(require("./fileFinder"));
|
|
|
48
48
|
const sources = __importStar(require("./sources"));
|
|
49
49
|
const glob_1 = require("glob");
|
|
50
50
|
const sheetloaf = new commander_1.Command();
|
|
51
|
-
sheetloaf.version("1.
|
|
51
|
+
sheetloaf.version("1.25.0", '-v, --version', 'Print the version of Sheetloaf.');
|
|
52
52
|
let usingStdin = false;
|
|
53
53
|
let postcssConfig = {
|
|
54
54
|
plugins: []
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sheetloaf",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.25.0",
|
|
4
4
|
"description": "freshmade stylesheets for the whole family.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"build:development": "tsc --watch",
|
|
11
11
|
"build:production": "tsc",
|
|
12
12
|
"test": "mocha -r ts-node/register test/*.test.ts",
|
|
13
|
-
"test2": "node . \"test/samples/styles/**/*.scss\" --dir \"test/samples/render/\" --load-path \"test/samples/lib\" --style compressed --base test/samples/styles/ --use autoprefixer,postcss-custom-properties --watch --pkg-importer node --silence-deprecation
|
|
13
|
+
"test2": "node . \"test/samples/styles/**/*.scss\" --dir \"test/samples/render/\" --load-path \"test/samples/lib\" --style compressed --base test/samples/styles/ --use autoprefixer,postcss-custom-properties --watch --pkg-importer node --silence-deprecation global-builtin",
|
|
14
14
|
"test3": "cat test/samples/styles/file.scss | node . --style compressed --use autoprefixer --load-path test/samples/styles > test/samples/render/file.css",
|
|
15
15
|
"test4": "cat test/samples/styles/file-with-error.scss | node . --style compressed --use autoprefixer > test/samples/render/file.css 2> test/samples/logs/error.log"
|
|
16
16
|
},
|
|
@@ -36,27 +36,22 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/mocha": "^10.0.10",
|
|
38
38
|
"@types/node": "^18.6.3",
|
|
39
|
-
"autoprefixer": "^10.4.
|
|
40
|
-
"bootstrap": "^5.3.
|
|
41
|
-
"mocha": "^11.
|
|
39
|
+
"autoprefixer": "^10.4.22",
|
|
40
|
+
"bootstrap": "^5.3.8",
|
|
41
|
+
"mocha": "^11.7.5",
|
|
42
42
|
"postcss": "^8.4.38",
|
|
43
43
|
"postcss-custom-properties": "^13.3.10",
|
|
44
|
-
"ts-node": "^10.9.
|
|
44
|
+
"ts-node": "^10.9.2",
|
|
45
45
|
"typescript": "^4.7.4"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"postcss": "^8.
|
|
48
|
+
"postcss": "^8.5.6"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"chokidar": "^4.0.1",
|
|
52
52
|
"commander": "^9.4.0",
|
|
53
|
-
"glob": "^11.
|
|
54
|
-
"picocolors": "^1.
|
|
55
|
-
"sass": "1.
|
|
56
|
-
},
|
|
57
|
-
"overrides": {
|
|
58
|
-
"sass": {
|
|
59
|
-
"@parcel/watcher@2.5.0": "$chokidar"
|
|
60
|
-
}
|
|
53
|
+
"glob": "^11.1.0",
|
|
54
|
+
"picocolors": "^1.1.1",
|
|
55
|
+
"sass": "1.94.2"
|
|
61
56
|
}
|
|
62
57
|
}
|