- An all in one asset transformer and bundler.
- Recommends that we use its internal dev server.
- Built within / serving the React community.
- Convention based, Rails-esque; many defaults for a "normal" project.
- Run off of a large config file.
- Has its own plugin ecosystem (Similar to babel / rollup transforms. Are they sharable?).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Return a reference to a document fragment's content that persists when the | |
* fragment's content is inserted into the DOM | |
* http://stackoverflow.com/a/13347298/530653z | |
* @param {DocumentFragment} fragment - fragment to return references from | |
* @returns {HTMLElement} A reference to the contents of fragment | |
*/ | |
const getReference = function(fragment) { | |
return [].slice.call(fragment.childNodes, 0)[0]; | |
}; |
Hi! Thanks for using this project. I had a lot of fun building it, and I hope you're having fun using it too.
- Read the error message and documentation.
- Search existing issues, closed issues, and the internet first.
- If the issue is with a dependency of this project, post on the dependency's repo.
- If you can fix the issue, submit a PR 👍 💃 💃 🚀.
- If the issue persists, post on the issue tracker. Include any information that could help others reproduce and fix.
To answer the "punctuation inside or outside quotes?" question, ask yourself if the punctuation belongs to the quote or the sentence that contains the quote.
If the quoted sentence ends but the unquoted sentence continues, periods become commas.
"How are you doing today?" he asked.
"Check out my quotes," Rob said. "This punctuation seems pretty natural."
If you do it the other way, it's all kinds of wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# https://gist.github.com/robwierzbowski/5430952/ | |
# Create and push to a new github repo from the command line. | |
# Grabs sensible defaults from the containing folder and `.gitconfig`. | |
# Refinements welcome. | |
# Gather constant vars | |
CURRENTDIR=${PWD##*/} | |
GITHUBUSER=$(git config github.user) |
NewerOlder