- npm run check로 우리가 사용하는 패키지에 업데이트가 있음을 확인한다.
- package.json에서 그 패키지의 버전을 최신으로 고정한다. (또는, 언제나 최신을 따라갈 수 있도록 ^(Caret)를 적절히 활용한다.)
- npm install을 하면, 새 패키지를 받아온다.
- 새 패키지로 행복하고 재밌게 개발을 한다.
- npm run check로 우리가 사용하는 패키지에 업데이트가 있음을 확인한다.
#!/bin/bash | |
# git-summary - summarise git repos at some path | |
# | |
# Adapted from https://gist.github.com/lmj0011/1a8dd1e376234ac7bf0fba2748ecdd0f | |
# | |
# Andy Gimblett, March 2017 | |
usage() { |
app_identifier "com.yourorganization.mytodoapp" # The bundle identifier of your app | |
apple_id "<You Apple Id>" # Your Apple email address | |
# You can uncomment any of the lines below and add your own | |
# team selection in case you're in multiple teams | |
# team_name "CAMobileApp" | |
# team_id "Q2CBPJ58CA" | |
# you can even provide different app identifiers, Apple IDs and team names per lane: | |
# https://github.com/KrauseFx/fastlane/blob/master/docs/Appfile.md |
{"lastUpload":"2017-07-26T09:13:57.753Z","extensionVersion":"v2.8.2"} |
// mongoose 4.3.x | |
var mongoose = require('mongoose'); | |
/* | |
* Mongoose by default sets the auto_reconnect option to true. | |
* We recommend setting socket options at both the server and replica set level. | |
* We recommend a 30 second connection timeout because it allows for | |
* plenty of time in most operating environments. | |
*/ | |
var options = { server: { socketOptions: { keepAlive: 300000, connectTimeoutMS: 30000 } }, |
#!/bin/sh | |
running(){ | |
tmutil status | grep "Running" | awk '{print $3}' | cut -c 1 | |
} | |
notify() { | |
DATE=`date` | |
curl -s \ | |
-F "token=<use your own>" \ |
### Keybase proof | |
I hereby claim: | |
* I am ailisobrian on github. | |
* I am obrian (https://keybase.io/obrian) on keybase. | |
* I have a public key ASA2FXFutC3I60GeRxao6LBYujn-VeLvWJ-S8uUbveREHQo | |
To claim this, I am signing this object: |
import { | |
Component, | |
ElementRef, | |
IterableDiffers, | |
OnInit, | |
Input, | |
Output, | |
EventEmitter, | |
} from '@angular/core'; | |
import { Schedule } from 'primeng/primeng'; |
Environment:
Happened:
Expected: