chisel-scripts 2.0.0-alpha.1 → 2.0.0-alpha.3.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/CHANGELOG.md +8 -0
- package/composer.phar +0 -0
- package/lib/extensions/stylesheets.mjs +1 -2
- package/package.json +2 -2
- package/yarn-error.log +0 -15044
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- INSERT-NEW-ENTRIES-HERE -->
|
|
4
4
|
|
|
5
|
+
## 2.0.0-alpha.3.0 (2024-10-07)
|
|
6
|
+
|
|
7
|
+
- update chisel-scripts version ([2957e4c](https://github.com/xfiveco/generator-chisel/commit/2957e4c))
|
|
8
|
+
|
|
9
|
+
## 2.0.0-alpha.2 (2024-10-07)
|
|
10
|
+
|
|
11
|
+
- fix styles file watching on mac ([d2cfca8](https://github.com/xfiveco/generator-chisel/commit/d2cfca8))
|
|
12
|
+
|
|
5
13
|
## 2.0.0-alpha.1 (2024-09-10)
|
|
6
14
|
|
|
7
15
|
- copy twig files ([67ff991](https://github.com/xfiveco/generator-chisel/commit/67ff991))
|
package/composer.phar
CHANGED
|
Binary file
|
|
@@ -42,8 +42,7 @@ export const start = async (api) => {
|
|
|
42
42
|
const stylesDir = api.resolve('src/styles');
|
|
43
43
|
const pattern = convertPathToPattern(stylesDir) + '/*/**/*.scss';
|
|
44
44
|
|
|
45
|
-
const watcher = chokidar.watch(
|
|
46
|
-
persistent: false,
|
|
45
|
+
const watcher = chokidar.watch(pattern, {
|
|
47
46
|
ignoreInitial: true,
|
|
48
47
|
});
|
|
49
48
|
watcher.on('add', () => build(api));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chisel-scripts",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
3
|
+
"version": "2.0.0-alpha.3.0",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"bin": {
|
|
6
6
|
"chisel-scripts": "bin/chisel-scripts.js"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@wordpress/scripts": "^27.9.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "ad109c10db57cab568c05a4b9057004c3323c271"
|
|
41
41
|
}
|