This file contains 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
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', |
This file contains 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
deploy: | |
steps: | |
- script: | |
name: install firebase-tools | |
code: npm install -g firebase-tools | |
- devillex/[email protected]: | |
project: $FIREBASE_PROJECT_NAME | |
token: $FIREBASE_TOKEN |
This file contains 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
{ | |
"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", |
This file contains 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
build: | |
steps: | |
- script: | |
name: install yarn | |
code: npm install -g yarn | |
- script: | |
name: report yarn version | |
code: yarn --version | |
- script: | |
name: set yarn cache |
This file contains 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
"scripts": { | |
"build": "gulp build", | |
"watch": "gulp watch", | |
"serve:before": "watch", | |
"emulate:before": "build", | |
"deploy:before": "build", | |
"build:before": "build", | |
"run:before": "build" | |
} |
This file contains 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
"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" | |
} |
This file contains 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
{ | |
"files.autoSave": "onFocusChange", | |
"editor.formatOnType": true, | |
"search.exclude": { | |
"**/.vscode": true, | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/coverage": true, | |
"**/shippable": true, | |
"**/.wercker": true, |
This file contains 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
source "/pipeline/script-ad4d3a4c-5bb1-463e-883c-1b4c5efad119/run.sh" < /dev/null | |
✗ You cannot run iOS unless you are on Mac OSX. |
This file contains 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
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'... |
This file contains 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
# 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 |
NewerOlder