chisel-scripts 2.1.4 → 2.1.5

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,10 @@
2
2
 
3
3
  <!-- INSERT-NEW-ENTRIES-HERE -->
4
4
 
5
+ ## <small>2.1.5 (2026-01-02)</small>
6
+
7
+ - wp-config-updates, wp/scripts lt, icons module define in functions.php ([3c97c63](https://github.com/xfiveco/generator-chisel/commit/3c97c63))
8
+
5
9
  ## <small>2.1.4 (2025-12-17)</small>
6
10
 
7
11
  - fix no experimental dev mode runtime chunk ([84817eb](https://github.com/xfiveco/generator-chisel/commit/84817eb))
package/composer.phar CHANGED
Binary file
@@ -0,0 +1,117 @@
1
+ <?php
2
+ /**
3
+ * The base configuration for WordPress
4
+ *
5
+ * The wp-config.php creation script uses this file during the
6
+ * installation. You don't have to use the web site, you can
7
+ * copy this file to "wp-config.php" and fill in the values.
8
+ *
9
+ * This file contains the following configurations:
10
+ *
11
+ * * MySQL settings
12
+ * * Secret keys
13
+ * * Database table prefix
14
+ * * ABSPATH
15
+ *
16
+ * @link https://codex.wordpress.org/Editing_wp-config.php
17
+ *
18
+ * @package WordPress
19
+ */
20
+
21
+ if ( file_exists( dirname( __FILE__ ) . '/wp-config-local.php' ) ) {
22
+
23
+ /**
24
+ * Settings for local environment loaded if available from wp-config-local.php
25
+ */
26
+
27
+ include dirname( __FILE__ ) . '/wp-config-local.php';
28
+
29
+ } else {
30
+
31
+ /**
32
+ * Settings for non-local environments, used when wp-config-local.php not available
33
+ */
34
+
35
+ /** MySQL settings - You can get this info from your web host */
36
+
37
+ /** The name of the database for WordPress */
38
+ define( 'DB_NAME', $_SERVER['DB_NAME'] );
39
+
40
+ /** MySQL database username */
41
+ define( 'DB_USER', $_SERVER['DB_USER'] );
42
+
43
+ /** MySQL database password */
44
+ define( 'DB_PASSWORD', $_SERVER['DB_PASSWORD'] );
45
+
46
+ /** MySQL hostname */
47
+ define( 'DB_HOST', $_SERVER['DB_HOST'] );
48
+
49
+ /**
50
+ * WordPress Database Table prefix.
51
+ *
52
+ * You can have multiple installations in one database if you give each
53
+ * a unique prefix. Only numbers, letters, and underscores please!
54
+ */
55
+ $table_prefix = '<%= tablePrefix %>';
56
+
57
+ /**
58
+ * For developers: WordPress debugging mode.
59
+ *
60
+ * Change this to true to enable the display of notices during development.
61
+ * It is strongly recommended that plugin and theme developers use WP_DEBUG
62
+ * in their development environments.
63
+ *
64
+ * For information on other constants that can be used for debugging,
65
+ * visit the Codex.
66
+ *
67
+ * @link https://codex.wordpress.org/Debugging_in_WordPress
68
+ */
69
+ define( 'WP_DEBUG', false );
70
+
71
+ /** The Database Collate type. Don't change this if in doubt. */
72
+ define( 'DB_COLLATE', '' );
73
+
74
+ /** Disable the Plugin and Theme Editor */
75
+ define( 'DISALLOW_FILE_EDIT', true );
76
+ }
77
+
78
+ /**
79
+ * Configuration for all available environments
80
+ */
81
+
82
+ /** Database Charset to use in creating database tables. */
83
+ define( 'DB_CHARSET', 'utf8' );
84
+
85
+ /**#@+
86
+ * Authentication Unique Keys and Salts.
87
+ *
88
+ * Change these to different unique phrases!
89
+ * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}
90
+ * You can change these at any point in time to invalidate all existing cookies. This will force all users to have to log in again.
91
+ *
92
+ * @since 2.6.0
93
+ */
94
+ define('AUTH_KEY', 'put your unique phrase here');
95
+ define('SECURE_AUTH_KEY', 'put your unique phrase here');
96
+ define('LOGGED_IN_KEY', 'put your unique phrase here');
97
+ define('NONCE_KEY', 'put your unique phrase here');
98
+ define('AUTH_SALT', 'put your unique phrase here');
99
+ define('SECURE_AUTH_SALT', 'put your unique phrase here');
100
+ define('LOGGED_IN_SALT', 'put your unique phrase here');
101
+ define('NONCE_SALT', 'put your unique phrase here');
102
+
103
+ /**#@-*/
104
+
105
+ /* That's all, stop editing! Happy blogging. */
106
+
107
+ /** Hide PHP errors */
108
+ if ( !WP_DEBUG ) {
109
+ ini_set( 'display_errors', 0 );
110
+ }
111
+
112
+ /** Absolute path to the WordPress directory. */
113
+ if ( !defined('ABSPATH') )
114
+ define( 'ABSPATH', dirname(__FILE__) . '/' );
115
+
116
+ /** Sets up WordPress vars and included files. */
117
+ require_once( ABSPATH . 'wp-settings.php' );
@@ -57,8 +57,5 @@ define( 'WP_DEBUG_DISPLAY', false );
57
57
  define( 'SCRIPT_DEBUG', true );
58
58
  define( 'WP_ENVIRONMENT_TYPE', 'development' );
59
59
 
60
- // Icons module. Also requires packacke.json and scss configuration.
61
- define( 'CHISEL_USE_ICONS_MODULE', false );
62
-
63
60
  /** The Database Collate type. Don't change this if in doubt. */
64
61
  define( 'DB_COLLATE', '' );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chisel-scripts",
3
- "version": "2.1.4",
3
+ "version": "2.1.5",
4
4
  "description": "Chisel scripts",
5
5
  "bin": {
6
6
  "chisel-scripts": "bin/chisel-scripts.js"
@@ -37,7 +37,7 @@
37
37
  "svgo": "^3.3.2"
38
38
  },
39
39
  "peerDependencies": {
40
- "@wordpress/scripts": "^27.9.0 || ^31.0.0 || ^31.1.0"
40
+ "@wordpress/scripts": "^27.9.0 || ^31.0.0 || ^31.1.0 || ^31.2.0"
41
41
  },
42
- "gitHead": "0e9815944ac4188917808f5f4ea981b853294708"
42
+ "gitHead": "116fc0781cdef419ebc0959289b1bae96a1198e9"
43
43
  }