Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active September 8, 2019 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vanaf1979/8d8bea2563cd726e8c7a7b98722a13be to your computer and use it in GitHub Desktop.
Save vanaf1979/8d8bea2563cd726e8c7a7b98722a13be to your computer and use it in GitHub Desktop.
Gist for my tutorial: Building a Gutenberg sidebar plugin Part 2: Adding structure and asset bundling https://vanaf1979.nl/building-a-gutenberg-sidebar-plugin-part-2-adding-structure-and-asset-bundling/
{
"name": "Metatags",
"version": "1.0.0",
"description": "Simple WordPress SEO plugin.",
"author": "Vanaf1979.nl",
"homepage": "https://github.com/vanaf1979/gb-plugin-tutorial",
"license": "GPL-2.0",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"keywords": [
"Seo",
"Wordpress",
"Plugin"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment