Skip to content

Instantly share code, notes, and snippets.

View cchen408's full-sized avatar
🏠
Working from home

Christopher Chen cchen408

🏠
Working from home
  • Ciphertrace (Mastercard)
  • CA, USA
  • 16:38 (UTC -07:00)
  • X @cchen408
View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active June 27, 2024 23:03
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@xjamundx
xjamundx / blog-webpack-2.md
Last active April 21, 2024 16:20
From Require.js to Webpack - Part 2 (the how)

This is the follow up to a post I wrote recently called From Require.js to Webpack - Party 1 (the why) which was published in my personal blog.

In that post I talked about 3 main reasons for moving from require.js to webpack:

  1. Common JS support
  2. NPM support
  3. a healthy loader/plugin ecosystem.

Here I'll instead talk about some of the technical challenges that we faced during the migration. Despite the clear benefits in developer experience (DX) the setup was fairly difficult and I'd like to cover some of the challanges we faced to make the transition a bit easier.