+ - 0:00:00
Notes for current slide
Notes for next slide

image

image image

img

⚠️ Press f to go full-screen.

1 / 37

πŸ‘‹ I'm

Ahmad Awais


πŸ₯‘ Open Source Developer Advocate

πŸ‘“ WordPress Core Dev (Full Stack)

πŸ‘¨β€πŸ’» EE-CS Engineer turned Emojineer


Rants on Twitter @MrAhmadAwais β†’ FOSS GitHub | AhmadAwais.com | LinkedIn

2 / 37

🐦 Follow

@MrAhmadAwais


πŸ”₯ Development Hot Tips

🀣 Developer jokes/rantsβ€š you name it

πŸ’― SuperCaliFragilisticExpialidocious!


MOAR: FOSS GitHub | AhmadAwais.com | LinkedIn

3 / 37

πŸ‘¨β€πŸ« VSCode.pro


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 β†’


4 / 37

Dev Experience


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

5 / 37

Dev Tooling


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

6 / 37

πŸ“¦ create-guten-block


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 β†’


7 / 37

πŸ“¦ CGB Usage


# 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 β†’


8 / 37

WHAT YOU GET


βš›οΈ 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 β†’


9 / 37

🎯 WPGulp


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 β†’


10 / 37

npm


npm is the node package manager.


βœ… It's used for the JavaScript language

🎯 It is the default package manager for Node.js

11 / 37

Publish NPM Packages


βœ… 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

12 / 37

Composer


composer is a Dependency Manager.


βœ… It's used for the PHP

🎯 Packagist is the main Composer repository.

13 / 37

Using Composer


πŸ€” Get started with Composer β€” read the docs

βœ… composer init β€” read the docs

🎯 Publish packages on Packagist

πŸ”₯ Hot tip: Using composer with Teams

14 / 37

What's NEXT?


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

15 / 37

Gulp + 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

😭 β†’ 😫 β†’ 😠 β†’ 😐 β†’ πŸ€” β†’ πŸ™ƒ β†’ 🧐 β†’ ❓

16 / 37

Gulp Task for webpack

17 / 37

Gulp Task for webpack


Let's create a task inside of WPGulp's gulpfile.js to handle webpack JavaScript compiler.


18 / 37

1. Install Development Dependencies

# TERMINAL
# 1. Open your project root folder and run.
npm i -D webpack webpack-cli gulp-util babel-preset-cgb babel-core
19 / 37

1. Install Development Dependencies

2. Create a webpack config

# TERMINAL
# 2. Create a webpack config.
touch webpack.config.js
20 / 37

1. Install Development Dependencies

2. Create a webpack config

3. Declare Constants

// Inside gulpfile.js
// #3. Define constants.
const webpack = require( 'webpack' );
const gutil = require( 'gulp-util' );
const webpackConfig = require( './webpack.config' );
21 / 37

4. WRITE THE GULP 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();
});
});
22 / 37

4. WRITE THE GULP TASK

4.1 '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();
});
});
23 / 37

4. WRITE THE GULP TASK

4.1 'webpackJS' task
4.2 webpack 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();
});
});
24 / 37

4. WRITE THE GULP TASK

4.1 'webpackJS' task
4.2 webpack compiler
4.3 Error handling
// 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();
});
});
25 / 37

4. WRITE THE GULP TASK

4.1 'webpackJS' task
4.2 webpack compiler
4.3 Error handling
4.3 webpack 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();
});
});
26 / 37

Configuration file for webpack


27 / 37

Configuration file for webpack


πŸ‘€ Copy paste the webpack config of cgb-scripts to our webpack.config.js file.


28 / 37

Configuration file for webpack


πŸ‘€ 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


29 / 37

Configuration file for webpack


πŸ‘€ 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


30 / 37

Configuration file for webpack


πŸ‘€ 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

31 / 37

1. Update Paths

Add paths by looking at the paths file.

// FILE: webpack.config.js
const 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 );
32 / 37

1. Update Paths

2. Add the Mode

// FILE: webpack.config.js
// …
// Export configuration.
module.exports = {
mode: 'development',
devtool: 'source-map',
33 / 37

1. Update Paths

2. Add The Mode

3. Update Entry/Output

// 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.
},
34 / 37

1. Update Paths

2. Add The Mode

3. Update Entry/Output

4. Add New Externals

// FILE: webpack.config.js
// …
// Add externals.
externals: {
wpObj: 'wpObj',
gtag: 'gtag',
Intercom: 'Intercom',
jquery: 'jQuery'
}
35 / 37

Gulp + webpack


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.

πŸ€” β†’ πŸ™ƒ β†’ 🧐 β†’ 🀞 β†’ 🀫 β†’ 😁 β†’ πŸ€—

36 / 37

Questions?!


Follow Ahmad on Twitter @MrAhmadAwais β†’


FOSS GitHub | AhmadAwais.com | LinkedIn

37 / 37

πŸ‘‹ I'm

Ahmad Awais


πŸ₯‘ Open Source Developer Advocate

πŸ‘“ WordPress Core Dev (Full Stack)

πŸ‘¨β€πŸ’» EE-CS Engineer turned Emojineer


Rants on Twitter @MrAhmadAwais β†’ FOSS GitHub | AhmadAwais.com | LinkedIn

2 / 37
Paused

Help

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