Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit 71ccc08

Browse files
Merge branch 'devel'
2 parents 6a64d3e + 37e1eb0 commit 71ccc08

File tree

5 files changed

+1181
-1037
lines changed

5 files changed

+1181
-1037
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog][Keep a Changelog] and this project adheres to [Semantic Versioning][Semantic Versioning].
55

6+
## [Unreleased]
7+
8+
### Changed
9+
- Updated function to remove unwanted Gutenberg stuff from the header
10+
- Updated Dependencies
11+
612
## [0.30.3] - 2022-07-21
713

814
### Changed

functions/cleanup.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
function brk_disable_gutenberg() {
1919
function brk_disable_gutenberg_scripts() {
2020
wp_dequeue_style( 'wp-block-library' );
21+
wp_dequeue_style( 'wp-block-library-theme' );
22+
wp_dequeue_style( 'wc-block-style' );
23+
wp_dequeue_style( 'global-styles' );
2124
}
2225
add_action( 'wp_enqueue_scripts', 'brk_disable_gutenberg_scripts' );
2326
add_filter( 'use_block_editor_for_post', '__return_false' ); // Disables the block editor for editing posts.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,24 @@
1717
"lint": "yarn lint:js && yarn lint:style && composer lint"
1818
},
1919
"dependencies": {
20-
"@fortawesome/fontawesome-free": "^6.1.1",
21-
"@popperjs/core": "^2.11.5",
20+
"@fortawesome/fontawesome-free": "^6.1.2",
21+
"@popperjs/core": "^2.11.6",
2222
"bootstrap": "^5.1.3"
2323
},
2424
"devDependencies": {
25-
"@babel/core": "^7.18.9",
25+
"@babel/core": "^7.18.13",
2626
"@babel/eslint-parser": "^7.18.9",
27-
"@babel/preset-env": "^7.18.9",
27+
"@babel/preset-env": "^7.18.10",
2828
"@rbnlffl/gulp-rollup": "^0.2.0",
2929
"@rollup/plugin-babel": "^5.3.1",
30-
"@rollup/plugin-commonjs": "^22.0.1",
30+
"@rollup/plugin-commonjs": "^22.0.2",
3131
"@rollup/plugin-node-resolve": "^13.3.0",
3232
"browser-sync": "^2.27.10",
3333
"del": "^7.0.0",
34-
"eslint": "^8.20.0",
34+
"eslint": "^8.22.0",
3535
"eslint-config-standard": "^17.0.0",
3636
"eslint-plugin-import": "^2.26.0",
37-
"eslint-plugin-n": "^15.2.4",
37+
"eslint-plugin-n": "^15.2.5",
3838
"eslint-plugin-promise": "^6.0.0",
3939
"gulp": "^4.0.2",
4040
"gulp-autoprefixer": "^8.0.0",
@@ -52,11 +52,11 @@
5252
"gulp-terser": "^2.1.0",
5353
"gulp-ttf2woff2": "^4.0.1",
5454
"gulp-wp-pot": "^2.5.0",
55-
"rollup": "^2.77.0",
56-
"sass": "^1.53.0",
57-
"stylelint": "^14.9.1",
55+
"rollup": "^2.78.1",
56+
"sass": "^1.54.5",
57+
"stylelint": "^14.11.0",
5858
"stylelint-config-recess-order": "^3.0.0",
59-
"stylelint-config-standard": "^26.0.0",
59+
"stylelint-config-standard": "^28.0.0",
6060
"stylelint-config-standard-scss": "^5.0.0"
6161
},
6262
"release-it": {

0 commit comments

Comments
 (0)