Skip to content

Instantly share code, notes, and snippets.

View devillecodes's full-sized avatar

De Ville Weppenaar devillecodes

View GitHub Profile
@devillecodes
devillecodes / .hyper.js
Last active December 20, 2016 17:36
Hyper settings (saved to '~/.hyper_plugins')
module.exports = {
config: {
// default font size in pixels for all tabs
fontSize: 12,
// font family with optional fallbacks
fontFamily: 'Menlo, "DejaVu Sans Mono", "Lucida Console", monospace',
// terminal cursor background color (hex)
cursorColor: '#F81CE5',
@devillecodes
devillecodes / yarn_with_wercker_deploy.yml
Created October 30, 2016 06:48
yarn with wercker - deploy step
deploy:
steps:
- script:
name: install firebase-tools
code: npm install -g firebase-tools
- devillex/firebase-deploy@1.0.2:
project: $FIREBASE_PROJECT_NAME
token: $FIREBASE_TOKEN
@devillecodes
devillecodes / yarn_with_wercker_package.json
Created October 30, 2016 06:46
yarn with wercker - package.json
{
"name": "admin-website-frontend",
"version": "0.1.0",
"private": true,
"devDependencies": {
"eslint": "3.8.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "2.0.1",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "6.4.1",
@devillecodes
devillecodes / yarn_with_wercker_build.yml
Last active May 19, 2019 20:48
yarn with wercker - build step
build:
steps:
- script:
name: install yarn
code: npm install -g yarn
- script:
name: report yarn version
code: yarn --version
- script:
name: set yarn cache
@devillecodes
devillecodes / package.json
Created October 14, 2016 07:20
npm scripts prior to Ionic CLI v2.1
"scripts": {
"build": "gulp build",
"watch": "gulp watch",
"serve:before": "watch",
"emulate:before": "build",
"deploy:before": "build",
"build:before": "build",
"run:before": "build"
}
@devillecodes
devillecodes / package.json
Last active October 14, 2016 07:18
npm scripts after Ionic CLI v2.1
"scripts": {
"build": "ionic-app-scripts build",
"watch": "ionic-app-scripts watch",
"serve:before": "watch",
"emulate:before": "build",
"deploy:before": "build",
"build:before": "build",
"run:before": "build"
}
@devillecodes
devillecodes / settings.json
Created October 11, 2016 19:08
VS Code Settings
{
"files.autoSave": "onFocusChange",
"editor.formatOnType": true,
"search.exclude": {
"**/.vscode": true,
"**/node_modules": true,
"**/bower_components": true,
"**/coverage": true,
"**/shippable": true,
"**/.wercker": true,
@devillecodes
devillecodes / ionic-cli-2.1.0-beta.2-output
Created October 6, 2016 08:33
Ionic build output with Ionic CLI (2.1.0-beta.2)
source "/pipeline/script-ad4d3a4c-5bb1-463e-883c-1b4c5efad119/run.sh" < /dev/null
✗ You cannot run iOS unless you are on Mac OSX.
@devillecodes
devillecodes / ionic-cli-2.0.0-beta.37-output
Created October 6, 2016 08:30
Ionic build output with Ionic CLI (2.0.0-beta.37)
source "/pipeline/script-5cda0cac-ca77-4fba-bc27-bbfc1dd8091a/run.sh" < /dev/null
Running 'build:before' gulp task before build
[16:45:09] Starting 'clean'...
[16:45:09] Finished 'clean' after 9.38 ms
[16:45:09] Starting 'build'...
[16:45:09] Starting 'env'...
[16:45:09] Finished 'env' after 13 ms
[16:45:10] Starting 'sass'...
[16:45:10] Starting 'html'...
@devillecodes
devillecodes / ionic-package-build-wercker-example.yml
Last active October 16, 2016 15:06
Ionic Package Build Wercker Example
# use the Node LTS with Ionic CLI installed
box: devillex/docker-ionic
build:
steps:
- npm-install
- script:
name: run npm build
code: npm run build