Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #54 from proshunsuke/v12
Browse files Browse the repository at this point in the history
V12
  • Loading branch information
proshunsuke authored Sep 12, 2021
2 parents 6d67fc7 + d5674fa commit f70a3e2
Show file tree
Hide file tree
Showing 6 changed files with 943 additions and 954 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
ecmaVersion: 2018,
project: ['./tsconfig.eslint.json'],
},
plugins: ['@typescript-eslint', 'jest'],
plugins: ['import', '@typescript-eslint', 'jest'],
extends: [
'airbnb-typescript/base',
'plugin:@typescript-eslint/recommended',
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,10 @@ Auto Updating Google Calendar using google apps script
その他|https://calendar.google.com/calendar/ical/06ol8jcjk0r5bviarevjicta70@group.calendar.google.com/public/basic.ics
テレビ|https://calendar.google.com/calendar/ical/14elrf80nstbrahsfe2iuem8fg@group.calendar.google.com/public/basic.ics
メディア|https://calendar.google.com/calendar/ical/ivej29993ugnjb20l077n233i4@group.calendar.google.com/public/basic.ics
ライブ|https://calendar.google.com/calendar/ical/dbot8s6eu5o91u6evdi4hucdr0%40group.calendar.google.com/public/basic.ics
ラジオ|https://calendar.google.com/calendar/ical/f01lrnkgl42eqfbs1k97u7mrdc@group.calendar.google.com/public/basic.ics
リリース|https://calendar.google.com/calendar/ical/oo8hkuk4udrflu06337hq42jqo@group.calendar.google.com/public/basic.ics
握手会|https://calendar.google.com/calendar/ical/d7q626djcs2ooq8rkpoc045d5c%40group.calendar.google.com/public/basic.ics
映画|https://calendar.google.com/calendar/ical/hbflgqvcrjvd9c1a07q5t93ork@group.calendar.google.com/public/basic.ics
雑誌|https://calendar.google.com/calendar/ical/2veim8rg9o7k2js0jtng8i2dug@group.calendar.google.com/public/basic.ics
新聞|https://calendar.google.com/calendar/ical/g3puqreu4a67quqqu7ueo58l5k@group.calendar.google.com/public/basic.ics
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,26 +10,27 @@
"@babel/preset-env": "*",
"@babel/preset-typescript": "*",
"@google-cloud/functions-framework": "*",
"forked-clasp": "2.8.2",
"@types/google-apps-script": "*",
"@types/jest": "*",
"@types/node": "*",
"@types/node-fetch": "*",
"@types/node-fetch": ">=2.0.0 <3.0.0",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"babel-loader": "*",
"coveralls": "*",
"dayjs": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-config-airbnb-typescript": "*",
"eslint-config-prettier": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"forked-clasp": "2.8.2",
"gas-webpack-plugin": "*",
"jest": "*",
"jest-fetch-mock": "*",
"mockdate": "*",
"node-fetch": "*",
"node-fetch": ">=2.0.0 <3.0.0",
"prettier": "*",
"puppeteer": "*",
"regenerator-runtime": "*",
Expand Down
2 changes: 1 addition & 1 deletion src/oneMonthSchedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class OneMonthSchedule {

// eslint-disable-next-line @typescript-eslint/no-var-requires,global-require,@typescript-eslint/no-unsafe-assignment
const { fetchUrl } = require('./fetchUrl');
// eslint-disable-next-line @typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-return
// eslint-disable-next-line @typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-return,@typescript-eslint/return-await
return await fetchUrl(customUrl);
}

Expand Down
8 changes: 8 additions & 0 deletions src/sites/sakurazaka/sakuraObjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ export const sakuraCalendarIds: SiteCalendarInterface[] = [
type: 'メディア',
calendarId: 'ivej29993ugnjb20l077n233i4@group.calendar.google.com',
},
{
type: 'ライブ',
calendarId: 'dbot8s6eu5o91u6evdi4hucdr0@group.calendar.google.com',
},
{
type: 'ラジオ',
calendarId: 'f01lrnkgl42eqfbs1k97u7mrdc@group.calendar.google.com',
Expand All @@ -38,6 +42,10 @@ export const sakuraCalendarIds: SiteCalendarInterface[] = [
type: 'リリース',
calendarId: 'oo8hkuk4udrflu06337hq42jqo@group.calendar.google.com',
},
{
type: '握手会',
calendarId: 'd7q626djcs2ooq8rkpoc045d5c@group.calendar.google.com',
},
{
type: '映画',
calendarId: 'hbflgqvcrjvd9c1a07q5t93ork@group.calendar.google.com',
Expand Down
Loading

0 comments on commit f70a3e2

Please sign in to comment.