diff --git a/index.php b/index.php index a644339..097e59b 100644 --- a/index.php +++ b/index.php @@ -3,7 +3,7 @@ Plugin Name: Code Syntax Block Plugin URI: https://github.com/mkaz/code-syntax-block Description: A plugin to extend Gutenberg code block with syntax highlighting -Version: 0.3.1 +Version: 0.4.0 Author: Marcus Kazmierczak Author URI: https://mkaz.blog/ License: GPL2 @@ -72,4 +72,4 @@ function mkaz_code_syntax_view_assets() { true // in footer ); } -add_action('wp_enqueue_scripts', 'mkaz_code_syntax_view_assets'); \ No newline at end of file +add_action('wp_enqueue_scripts', 'mkaz_code_syntax_view_assets'); diff --git a/package.json b/package.json index 43fb19d..77aacb1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mkaz-code-syntax", - "version": "0.3.1", + "version": "0.4.0", "license": "GPL-2.0-or-later", "main": "code-syntax.js", "devDependencies": { @@ -23,6 +23,7 @@ }, "scripts": { "build": "cross-env BABEL_ENV=default NODE_ENV=production webpack", - "dev": "cross-env BABEL_ENV=default webpack --watch" + "dev": "cross-env BABEL_ENV=default webpack --watch", + "zip": "zip -r code-syntax-block.zip index.php readme.md assets build" } }