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
aws elasticbeanstalk update-environment --solution-stack-name "64bit Amazon Linux 2017.09 v2.6.6 running PHP 7.1" --environment-id "********" --region "us-east-1" |
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
$(document).ready(function(){ | |
$(window).scroll(function(evt){ | |
var height = $(window).scrollTop(); | |
if(height > 300) { | |
$('.navbar').addClass('bg-dark'); | |
}else{ | |
$('.navbar').removeClass('bg-dark'); | |
} | |
}); |
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
"build-wc": "vue-cli-service build --target wc --name lib 'src/components/*.vue'" |
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
const compiler = require('vue-template-compiler'); | |
const babel = require("@babel/core"); | |
let content = ''; | |
process.stdin.resume(); | |
process.stdin.on('data', buf => { | |
content += buf.toString(); | |
}); |
OlderNewer