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 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))
@@ -1,5 +1,4 @@
1
1
  /build
2
2
  /vendor
3
3
  /node_modules
4
- /assets/hashes.php
5
4
  /.use-devcontainer
@@ -0,0 +1,10 @@
1
+ {
2
+ "recommendations": [
3
+ "esbenp.prettier-vscode",
4
+ "dbaeumer.vscode-eslint",
5
+ "streetsidesoftware.code-spell-checker",
6
+ "editorconfig.editorconfig",
7
+ "stylelint.vscode-stylelint",
8
+ "mrmlnc.vscode-scss"
9
+ ]
10
+ }
@@ -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 wp-config configuration.",
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.1.0",
32
+ "@wordpress/scripts": "^31.2.0",
33
33
  "chisel-scripts": "*",
34
34
  "cross-env": "^7.0.3"
35
35
  },
@@ -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 wp-config configuration.
40
+ // Icons module. Also requires packacke.json and functions.php configuration.
41
41
  $use-icons-module: false;
@@ -51,3 +51,4 @@ npm-debug.log
51
51
  /dev-vhost.conf
52
52
  /wp-content/uploads
53
53
  /wp-config-local.php
54
+ /wp-config.php
@@ -1,5 +1,5 @@
1
1
  module.exports = {
2
- 'chisel-scripts': '2.1.2',
2
+ 'chisel-scripts': '2.1.5',
3
3
  'chisel-shared-utils': '2.0.0-alpha.1',
4
- 'generator-chisel': '2.3.2',
4
+ 'generator-chisel': '2.3.3',
5
5
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-chisel",
3
- "version": "2.3.2",
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": "54768b8dd93e3773c3659f28445c9c6d76a2819c"
40
+ "gitHead": "116fc0781cdef419ebc0959289b1bae96a1198e9"
41
41
  }