generator-chisel 2.3.2 → 2.3.3
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 +6 -0
- package/lib/commands/create/creators/app/chisel-starter-theme/.gitignore.chisel-tpl +0 -1
- package/lib/commands/create/creators/app/chisel-starter-theme/.vscode/extensions.json +10 -0
- package/lib/commands/create/creators/app/chisel-starter-theme/.vscode/settings.json +19 -0
- package/lib/commands/create/creators/app/chisel-starter-theme/functions.php +5 -0
- package/lib/commands/create/creators/app/chisel-starter-theme/package.chisel-tpl.json +2 -2
- package/lib/commands/create/creators/app/chisel-starter-theme/src/design/settings/_index.scss +1 -1
- package/lib/commands/create/creators/app/template/.gitignore.chisel-tpl +1 -0
- package/lib/commands/create/packages-versions.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- INSERT-NEW-ENTRIES-HERE -->
|
|
4
4
|
|
|
5
|
+
## <small>2.3.3 (2026-01-02)</small>
|
|
6
|
+
|
|
7
|
+
- Publish ([0e98159](https://github.com/xfiveco/generator-chisel/commit/0e98159))
|
|
8
|
+
- Publish ([2864ed6](https://github.com/xfiveco/generator-chisel/commit/2864ed6))
|
|
9
|
+
- wp-config-updates, wp/scripts lt, icons module define in functions.php ([3c97c63](https://github.com/xfiveco/generator-chisel/commit/3c97c63))
|
|
10
|
+
|
|
5
11
|
## <small>2.3.2 (2025-12-16)</small>
|
|
6
12
|
|
|
7
13
|
- make icons module optional ([94e4c6c](https://github.com/xfiveco/generator-chisel/commit/94e4c6c))
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"git.openRepositoryInParentFolders": "always",
|
|
3
|
+
|
|
4
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
5
|
+
"editor.formatOnSave": true,
|
|
6
|
+
|
|
7
|
+
"editor.codeActionsOnSave": {
|
|
8
|
+
"source.fixAll": "explicit",
|
|
9
|
+
"source.fixAll.eslint": "explicit"
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
"[javascript][javascriptreact][typescript][typescriptreact][vue][css][scss]": {
|
|
13
|
+
"editor.formatOnSave": false
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
"stylelint.validate": ["css", "scss", "vue"],
|
|
17
|
+
"css.validate": false,
|
|
18
|
+
"scss.validate": false
|
|
19
|
+
}
|
|
@@ -24,6 +24,11 @@ spl_autoload_register(
|
|
|
24
24
|
}
|
|
25
25
|
);
|
|
26
26
|
|
|
27
|
+
// Icons module. Also requires packacke.json and scss configuration.
|
|
28
|
+
if ( ! defined( 'CHISEL_USE_ICONS_MODULE' ) ) {
|
|
29
|
+
define( 'CHISEL_USE_ICONS_MODULE', true );
|
|
30
|
+
}
|
|
31
|
+
|
|
27
32
|
Timber\Timber::init();
|
|
28
33
|
|
|
29
34
|
\Chisel\Controllers\AjaxController::get_instance();
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"devcontainer:up": "npm run --silent devcontainer -- up --workspace-folder ../../..",
|
|
11
11
|
"devcontainer:enter": "/usr/bin/env bash ../../../.devcontainer/exec bash",
|
|
12
12
|
"devcontainer:start": "/usr/bin/env bash ../../../.devcontainer/exec npm run --silent start",
|
|
13
|
-
"//icons-module": "Add --use-icons-module to start and build-scripts jobs to enable icons module. Also requires scss and
|
|
13
|
+
"//icons-module": "Add --use-icons-module to start and build-scripts jobs to enable icons module. Also requires scss and functions.php configuration.",
|
|
14
14
|
"start": "chisel-scripts start --experimental-modules",
|
|
15
15
|
"dev": "npm run --silent start",
|
|
16
16
|
"build-scripts": "chisel-scripts build --experimental-modules",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@wordpress/interactivity": "^6.36.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@wordpress/scripts": "^31.
|
|
32
|
+
"@wordpress/scripts": "^31.2.0",
|
|
33
33
|
"chisel-scripts": "*",
|
|
34
34
|
"cross-env": "^7.0.3"
|
|
35
35
|
},
|
package/lib/commands/create/creators/app/chisel-starter-theme/src/design/settings/_index.scss
CHANGED
|
@@ -37,5 +37,5 @@ $static-icons: ('minus', 'plus', 'arrow-right', 'arrow-left');
|
|
|
37
37
|
$animated-icons: ('loader');
|
|
38
38
|
$multicolor-icons: ();
|
|
39
39
|
|
|
40
|
-
// Icons module. Also requires packacke.json and
|
|
40
|
+
// Icons module. Also requires packacke.json and functions.php configuration.
|
|
41
41
|
$use-icons-module: false;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generator-chisel",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "A generator for scaffolding front-end and WordPress projects",
|
|
5
5
|
"bin": {
|
|
6
6
|
"chisel": "bin/chisel.js"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"tinyqueue": "^2.0.3",
|
|
38
38
|
"update-notifier": "^4.1.0"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "116fc0781cdef419ebc0959289b1bae96a1198e9"
|
|
41
41
|
}
|