File tree Expand file tree Collapse file tree 5 files changed +1023
-744
lines changed Expand file tree Collapse file tree 5 files changed +1023
-744
lines changed Original file line number Diff line number Diff line change @@ -66,8 +66,6 @@ Qiitaの[アプリケーションページ](https://qiita.com/settings/applicati
6666` string ` : Qiita APIのアクセストークンを設定します。
6767### ` qiita.tweetOnCreateItem `
6868` boolean ` : 投稿を公開した際にTwitterで共有するかどうかを指定できます。(Twitter連携ログイン済みの場合のみ)
69- ### ` qiita.gistOnCreateItem `
70- ` boolean ` : 投稿を公開した際にGitHub Gistで共有するかどうかを指定できます。(GitHub連携ログイン済みの場合のみ)
7169
7270## 開発
7371```
Original file line number Diff line number Diff line change 2222 "dependencies" : {
2323 "@types/chai" : " ^4.1.7" ,
2424 "@types/mocha" : " ^5.2.5" ,
25- "@types/node" : " ^10 .12.10 " ,
25+ "@types/node" : " ^11 .12.0 " ,
2626 "chai" : " ^4.2.0" ,
27- "core-js" : " ^2.5.7 " ,
28- "mocha" : " ^5.2.0 " ,
27+ "core-js" : " ^3.0.0 " ,
28+ "mocha" : " ^6.0.2 " ,
2929 "npm-run-all" : " ^4.1.5" ,
3030 "qiita-js-2" : " ^1.3.1" ,
3131 "tslint" : " ^5.8.0" ,
100100 "type" : " boolean" ,
101101 "default" : false ,
102102 "description" : " %configuration.tweetOnCreateItem.description%"
103- },
104- "qiita.gistOnCreateItem" : {
105- "type" : " boolean" ,
106- "default" : false ,
107- "description" : " %configuration.gistOnCreateItem.description%"
108103 }
109104 }
110105 }
Original file line number Diff line number Diff line change 5757
5858 "configuration.token.description" : " Qiitaのアクセストークン" ,
5959 "configuration.tweetOnCreateItem.description" : " 投稿を公開した際にTwitterで共有するかどうか" ,
60- "configuration.gistOnCreateItem.description" : " 投稿を公開した際にGitHub Gistで共有するかどうか" ,
6160
6261 "views.qiitaItem" : " Qiitaの投稿"
6362}
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ export async function compose (resource?: Uri) {
2222 tags : [ ] ,
2323 private : false ,
2424 tweet : workspace . getConfiguration ( 'qiita' ) . get ( 'tweetOnCreateItem' ) ,
25- gist : workspace . getConfiguration ( 'qiita' ) . get ( 'gistOnCreateItem' ) ,
2625 } ;
2726
2827 // 保存済みファイルの場合
You can’t perform that action at this time.
0 commit comments