UNPKG

create-guten-block

Version:

Create a WordPress Gutenberg Block plugin with Zero-Config #OCJS, Webpack, React, ES6/7/8/Next, ESLint, Babel, and more.

13 lines (9 loc) 204 B
/** * Update notifier */ 'use strict'; const updateNotifier = require( 'update-notifier' ); const pkg = require( '../package.json' ); module.exports = () => { updateNotifier( { pkg } ).notify(); };