π₯ Open Source Developer Advocate
π WordPress Core Dev (Full Stack)
π¨βπ» EE-CS Engineer turned Emojineer
Rants on Twitter @MrAhmadAwais β FOSS GitHub | AhmadAwais.com | LinkedIn
π₯ Development Hot Tips
π€£ Developer jokes/rantsβ you name it
π― SuperCaliFragilisticExpialidocious!
MOAR: FOSS GitHub | AhmadAwais.com | LinkedIn
After ten years of Sublime, in 2017 I completely switched over to this new open source code editor called Visual Studio Code. I couldn't be happier.
β JavaScript Based Open Source Editor
π I was able to contribute π¨βπ» to VSCode
π Shades of purple β£ my first code editor theme is used by over 10,000 developers in VSCode, iTerm2, Hyper, Slack, Alfred, Highlight.js, etc.
π Sign up to become a VSCode Power User β
Let's talk about you; the DEVELOPER.
π Your experience as a developer
π How can you improve your dev-workflow
π And developer tooling to make you better
β οΈ Press f
to go full-screen
Developer Tooling is important if you want to love what you do and do it more often at the same time.
β Love what you do
β Do it more often
π― Sane automation
A zero-configuration #0CJS developer toolkit for building WordPress Gutenberg block plugins.
π Downloaded 60,000+ times
π¨βπ» Used by over 15,000 developers
πΎ Over 1,000 projects depend on CGB
π Star create-guten-block β
# 1. Create the block plugin.npx create-guten-block my-block# 2. Browse the plugin.cd my-block# 3. Start compiling & Watching.npm start# 4. Build for production.npm run build
π Star create-guten-block β
βοΈ React, JSX, and ES6 syntax support
ποΈ Dev/production build process is webpack based
π Beyond ES6 i.e. async/await
, object spread, etc
π€ Auto-prefixed CSS, no need for -webkit
prefixes
π Bundled JS, CSS, and images for production
π οΈ Hassle-free single dependency of cgb-scripts
π Star create-guten-block β
An advanced & extensively documented Gulp WordPress boilerplate to help you kickstart a build-workflow for your WordPress plugins and themes.
π Downloaded 110,000+ times
π¨βπ» Used by over 20,000 developers
πΎ About 3,000 projects depend on it
π Star WPGulp β
β
npm init -y
β read the docs
π― npm publish
β read the docs and a detailed article on how to publish your package on npm
π€ release-it
can automate GitHub tags, releases, and npm publishing. More on release-it
π€ Get started with Composer β read the docs
β
composer init
β read the docs
π― Publish packages on Packagist
π₯ Hot tip: Using composer with Teams
Let's build some sort of automation, RIGHT!
β
Most devs are well versed in Gulp
β
Many devs find webpack
quite hard
π‘ How about we combine Gulp
and webpack
Mind blown?! OK here's what we're going to do:
π― Combine WPGulp
with create-guten-block
β
Code modern JavaScript by using webpack
β
Keep handling everything else with Gulp
π β π« β π β π β π€ β π β π§ β β
Let's create a task inside of WPGulp's gulpfile.js
to handle webpack
JavaScript compiler.
# TERMINAL# 1. Open your project root folder and run.npm i -D webpack webpack-cli gulp-util babel-preset-cgb babel-core
# TERMINAL# 2. Create a webpack config.touch webpack.config.js
// Inside gulpfile.js// #3. Define constants.const webpack = require( 'webpack' );const gutil = require( 'gulp-util' );const webpackConfig = require( './webpack.config' );
// Inside gulpfile.js// JavaScript via webpack.gulp.task( 'webpackJS', callback => { webpack( webpackConfig, ( err, stats ) => { if ( err ) { throw new gutil.PluginError( 'webpack', err ); } gutil.log( '[webpack]', stats.toString({ colors: true, progress: true }) ); callback(); });});
'webpackJS'
task// Inside gulpfile.js// JavaScript via webpack. gulp.task( 'webpackJS', callback => { webpack( webpackConfig, ( err, stats ) => { if ( err ) { throw new gutil.PluginError( 'webpack', err ); } gutil.log( '[webpack]', stats.toString({ colors: true, progress: true }) ); callback(); }); });
'webpackJS'
taskwebpack
compiler// Inside gulpfile.js// JavaScript via webpack.gulp.task( 'webpackJS', callback => { webpack( webpackConfig, ( err, stats ) => { if ( err ) { throw new gutil.PluginError( 'webpack', err ); } gutil.log( '[webpack]', stats.toString({ colors: true, progress: true }) ); callback(); });});
'webpackJS'
taskwebpack
compiler// Inside gulpfile.js// JavaScript via webpack.gulp.task( 'webpackJS', callback => { webpack( webpackConfig, ( err, stats ) => { if ( err ) { throw new gutil.PluginError( 'webpack', err ); } gutil.log( '[webpack]', stats.toString({ colors: true, progress: true }) ); callback(); });});
'webpackJS'
taskwebpack
compilerwebpack
log// Inside gulpfile.js// JavaScript via webpack.gulp.task( 'webpackJS', callback => { webpack( webpackConfig, ( err, stats ) => { if ( err ) { throw new gutil.PluginError( 'webpack', err ); } gutil.log( '[webpack]', stats.toString({ colors: true, progress: true }) ); callback(); });});
π Copy paste the webpack
config of cgb-scripts to our webpack.config.js
file.
π Copy paste the webpack
config of cgb-scripts to our webpack.config.js
file.
β
Trim anything that doesn't handle JavaScript from our webpack.config.js
file
π Copy paste the webpack
config of cgb-scripts to our webpack.config.js
file.
β
Trim anything that doesn't handle JavaScript from our webpack.config.js
file
β Update the paths and we're good to go
π Copy paste the webpack
config of cgb-scripts to our webpack.config.js
file.
β
Trim anything that doesn't handle JavaScript from our webpack.config.js
file
β Update the paths and we're good to go
π Let's have a look
Add paths by looking at the paths file.
// FILE: webpack.config.jsconst fs = require( 'fs' );const path = require( 'path' ); // Make sure any symlinks in the project folder are resolved: const theDir = fs.realpathSync( process.cwd() ); const resolvePath = relPath => path.resolve( theDir, relPath );
// FILE: webpack.config.js// β¦// Export configuration.module.exports = { mode: 'development', devtool: 'source-map',
// FILE: webpack.config.js// β¦// Export configuration.module.exports = { mode: 'development', devtool: 'source-map', entry: { 'main.min': './assets/js/src/index.js' // 'name' : 'path/file.ext'. }, output: { pathinfo: true, path: resolvePath( './assets/js/build/' ), // The dist folder. filename: '[name].js' // [name] = './assets/js/index.build' as defined above. },
// FILE: webpack.config.js// β¦// Add externals.externals: { wpObj: 'wpObj', gtag: 'gtag', Intercom: 'Intercom', jquery: 'jQuery'}
Mind blown?! Here's what we've accomplished:
π― JavaScript is being handled by webpack
β
Everything else is still being handled by WPGulp
β We can now use modern JavaScript features, npm Modules, async/await, Object/Array spreads, etc.
π€ β π β π§ β π€ β π€« β π β π€
π₯ Open Source Developer Advocate
π WordPress Core Dev (Full Stack)
π¨βπ» EE-CS Engineer turned Emojineer
Rants on Twitter @MrAhmadAwais β FOSS GitHub | AhmadAwais.com | LinkedIn
Keyboard shortcuts
β, β, Pg Up, k | Go to previous slide |
β, β, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |