Skip to content

Commit

Permalink
v1.1.0 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x authored Aug 17, 2023
2 parents b026a66 + 68df03f commit 94ddc2d
Show file tree
Hide file tree
Showing 12 changed files with 3,408 additions and 5,138 deletions.
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@
"extends @wordpress/browserslist-config"
],
"devDependencies": {
"@tinypixelco/laravel-mix-wp-blocks": "^1.1.0",
"@wordpress/babel-preset-default": "^4.19.0",
"@wordpress/browserslist-config": "^2.7.0",
"@wordpress/dependency-extraction-webpack-plugin": "^2.8.0",
"cross-env": "^7.0.2",
"laravel-mix": "^5.0.9",
"sass": "^1.29.0",
"sass-loader": "^10.0.5",
"tailwindcss": "^3.2.4",
"vue-template-compiler": "^2.6.12"
"@tinypixelco/laravel-mix-wp-blocks": "^1.2.0",
"@wordpress/babel-preset-default": "^7.24.0",
"@wordpress/browserslist-config": "^5.23.0",
"@wordpress/dependency-extraction-webpack-plugin": "^4.23.0",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.49",
"sass": "^1.65.1",
"sass-loader": "^13.3.2",
"tailwindcss": "^3.3.3",
"vue-template-compiler": "^2.7.14"
},
"scripts": {
"build": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build:production": "cross-env NODE_ENV=production webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"start": "cross-env NODE_ENV=development webpack --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js --watch"
"build": "mix build",
"build:production": "mix build --production",
"start": "mix watch"
},
"dependencies": {
"react-lorem-ipsum": "^1.4.7"
"react-lorem-ipsum": "^1.4.10"
}
}
2 changes: 1 addition & 1 deletion plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Plugin Name: GutenTweaks
* Plugin URI: https://github.com/log1x/gutentweaks
* Description: A plugin containing a few Gutenberg tweaks.
* Version: 1.0.9
* Version: 1.1.0
* Author: Brandon Nifong
* Author URI: https://github.com/log1x
* Licence: MIT
Expand Down
2 changes: 1 addition & 1 deletion public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/css/editor.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array(), 'version' => '2035d4f4e7c631911b212b561e817dcd');
<?php return array('dependencies' => array(), 'version' => '894735d76fd82194');
2 changes: 1 addition & 1 deletion public/js/app.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/js/editor.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('wp-blocks', 'wp-data', 'wp-dom-ready', 'wp-edit-post', 'wp-i18n', 'wp-plugins'), 'version' => '99b8cd9ea0a2477da511c2f92008f889');
<?php return array('dependencies' => array('wp-blocks', 'wp-data', 'wp-dom-ready', 'wp-edit-post', 'wp-i18n', 'wp-plugins'), 'version' => 'b7f106a2e4d388e3');
2 changes: 1 addition & 1 deletion public/js/editor.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"/js/app.js": "/js/app.js",
"/css/app.css": "/css/app.css",
"/js/app.asset.php": "/js/app.asset.php",
"/js/editor.js": "/js/editor.js",
"/js/editor.asset.php": "/js/editor.asset.php",
"/css/editor.css": "/css/editor.css",
"/js/editor.js": "/js/editor.js"
"/css/app.css": "/css/app.css"
}
3 changes: 3 additions & 0 deletions resources/js/extensions/disable-block-types.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const blacklist = [
'core/term-description',
'core/verse',
'core/widget-area',
'core/footnotes',
'editorskit/',
'html-forms/',
'monsterinsights/',
Expand All @@ -76,6 +77,8 @@ const blacklist = [
'yoast-seo/estimated-reading-time',
'yoast-seo/related-links',
'yoast-seo/table-of-contents',
'yoast-seo/siblings',
'yoast-seo/subpages',
]

domReady(() => {
Expand Down
3 changes: 1 addition & 2 deletions tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
module.exports = {
variants: {},
plugins: [],
content: ['./resources/**/*.js'],
}
Loading

0 comments on commit 94ddc2d

Please sign in to comment.