Skip to content

Instantly share code, notes, and snippets.

View devillecodes's full-sized avatar

De Ville Weppenaar devillecodes

View GitHub Profile
@devillecodes
devillecodes / firebase-wercker.yml
Last active April 7, 2018 10:54
Example wercker with Firebase deploy step
box: devillex/docker-firebase
build:
steps:
- npm-install
- script:
name: run npm build script
code: npm run build
- script:
name: echo nodejs information
@devillecodes
devillecodes / ionic-login-example.sh
Created August 29, 2016 19:32
Example of ionic login command
ionic login --email your.email@ionic.io --password your.ionic.io.password
@devillecodes
devillecodes / ionic-package-build-example.sh
Created August 29, 2016 19:40
Ionic Package Build Example
ionic package build ios --release --profile "my.security.profile"
@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
@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-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 / 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 / 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 / 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 / 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