Edit package.json file to include these browserslist configuration
{
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],Edit package.json file to include these browserslist configuration
{
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],| [ | |
| {"keys": ["tab"], "command": "expand_abbreviation_by_tab", "context": | |
| [ | |
| { "operand": "source.js", "operator": "equal", "match_all": true, "key": "selector" }, | |
| { "match_all": true, "key": "selection_empty" }, | |
| { "operator": "equal", "operand": false, "match_all": true, "key": "has_next_field" }, | |
| { "operand": false, "operator": "equal", "match_all": true, "key": "auto_complete_visible" }, | |
| { "match_all": true, "key": "is_abbreviation" } | |
| ] | |
| } |
| <div class="test"> | |
| Hello World | |
| </div> |
| <?php $subCategories = get_term_children($queried_object->term_id, 'product_cat') ?> | |
| <?php if($queried_object->post_type == 'page'): $categories = get_terms('product_cat'); ?> | |
| <?php foreach($categories as $category): ?> | |
| <?php if($category->count && ($category->parent == 0)): ?> | |
| <h4><?php echo $category->name ?></h4> | |
| <?php echo do_shortcode('[product_category category="' . $category->slug . '"]'); ?> | |
| <?php endif; ?> | |
| <?php endforeach; ?> |
| const path = require('path'); | |
| const express = require('express'); | |
| const port = process.env.PORT || 3000; | |
| const server = express(); | |
| server.get('/favicon.ico', function(req, res) { | |
| res.writeHead(200, { 'Content-Type': 'image/x-icon' }); | |
| res.end(); | |
| }); |
Simply open your key binding settings Preferences > Key Bindings — User and add the snippet to your settings array
| Verifying that "jubalm.id" is my Blockstack ID. https://onename.com/jubalm |
| <?php | |
| date_default_timezone_set('Asia/Manila'); | |
| class Deploy { | |
| /** | |
| * A callback function to call after the deploy has finished. | |
| * | |
| * @var callback |