Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
2bb706d
fix: upgrade @babel/runtime-corejs2 from 7.12.1 to 7.13.17 (#365)
snyk-bot Aug 24, 2022
b890bf9
remove unused variable
jamesros161 Aug 24, 2022
951f12b
fix: upgrade @wordpress/hooks from 2.10.0 to 2.12.2 (#366)
snyk-bot Aug 24, 2022
95bc5f7
fix: upgrade @wordpress/dom-ready from 2.11.0 to 2.13.2 (#367)
snyk-bot Aug 24, 2022
9c17d43
fix: package.json & yarn.lock to reduce vulnerabilities (#504)
snyk-bot Aug 24, 2022
2ca19e2
updated yarn.lock
jamesros161 Aug 24, 2022
df4e011
fix: package.json & yarn.lock to reduce vulnerabilities (#562)
snyk-bot Aug 24, 2022
24d6642
update yarn.lock
jamesros161 Aug 24, 2022
ff2a4f1
fix: package.json & yarn.lock to reduce vulnerabilities (#370)
snyk-bot Aug 24, 2022
292d8cc
update yarn.lock
jamesros161 Aug 24, 2022
132f018
update puppeteer & ws
jamesros161 Aug 24, 2022
855c5d0
update 'i'
jamesros161 Aug 24, 2022
1b1d681
update chownr
jamesros161 Aug 24, 2022
e9a9eee
updated url-parse
jamesros161 Aug 24, 2022
399bcab
update follow-redirects
jamesros161 Aug 24, 2022
f4ddfd5
update moment
jamesros161 Aug 24, 2022
18bcb3e
update readme
jamesros161 Aug 24, 2022
ab6b05b
fix 'final private' notices
jamesros161 Aug 29, 2022
8d3ee84
resolves #516 (#730)
jamesros161 Aug 30, 2022
cd3a23c
resolves #401 (#729)
jamesros161 Aug 30, 2022
de6aad0
update version numbers and readme
jamesros161 Aug 30, 2022
489416e
specify nanoid version for postcss
jamesros161 Aug 31, 2022
c6253fa
fix secondary hover color display
jamesros161 Aug 31, 2022
1cd4dc7
update version numbers
jamesros161 Sep 6, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix 'final private' notices
  • Loading branch information
jamesros161 committed Aug 29, 2022
commit ab6b05bad157ea9d9a725a8906f148992e92aa5f
2 changes: 2 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,8 @@ gulp.task('phpDeps', function () {
// Use locally provided FontAwesome dependency.
.pipe(replace(/([ \t]*)wp_enqueue_script\(\s?\'kirki-fontawesome-font\',\s?\'https:\/\/use.fontawesome.com\/30858dc40a.js\',\s?array\(\),\s?\'4.0.7\',\s?(?:true|false)\s?\)\;\s?^(?:[\t ]*(?:\r?\n|\r))*/gm, "$1global $boldgrid_theme_framework;\n$1$bgtfw_configs = $boldgrid_theme_framework->get_configs();\n\n$1if ( ! class_exists( 'BoldGrid_Framework_Styles' ) ) {\n$1\trequire_once $bgtfw_configs['framework']['includes_dir'] . 'class-boldgrid-framework-styles.php';\n$1}\n\n$1$bgtfw_styles = new BoldGrid_Framework_Styles( $bgtfw_configs );\n$1$bgtfw_styles->enqueue_fontawesome();\n\n"))
.pipe( deleteLines( { 'filters': [ /.*sourceMappingURL=.*/i ] } ) )
// Change 'final private' methods to 'private'.
.pipe( replace( /final private function/g, 'private function' ) )
.pipe(gulp.dest(config.dist + '/includes/kirki') );
// Get Kirki CSS.
gulp.src(config.node_modules + '/kirki-toolkit/assets/**/*.{css,json}')
Expand Down