@sumotto/configs 0.0.8 → 0.0.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sumotto/configs",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Configs for my work",
5
5
  "scripts": {
6
6
  "release": "np --yolo"
package/wp/phpcs.xml CHANGED
@@ -45,6 +45,8 @@
45
45
  <element value="wld_get_value" />
46
46
  <element value="wld_get_attrs" />
47
47
  <element value="wld_get_template_part" />
48
+ <element value="get_block_wrapper_attributes" />
49
+ <element value="wp_interactivity_data_wp_context" />
48
50
  </property>
49
51
  </properties>
50
52
  </rule>
@@ -32,11 +32,12 @@ const defaultConfig = new Config( defaultConfigWP, 'default', port )
32
32
  cleanOnceBeforeBuildPatterns: [
33
33
  '**/*',
34
34
  // Each link in the path has been added, because if this is not done,
35
- // the scripts will be separated since it does not fall under the condition !blocks/**/scripts/module*,
35
+ // the scripts will be separated since it does not fall under the condition !blocks/*/scripts/module.*,
36
36
  // and accordingly, the module files will be included with it...
37
- '!blocks/*/',
37
+ '!blocks',
38
+ '!blocks/*',
38
39
  '!blocks/*/scripts',
39
- '!blocks/*/scripts/module*',
40
+ '!blocks/*/scripts/module.*',
40
41
  ],
41
42
  cleanStaleWebpackAssets: false,
42
43
  } ),