Skip to content

Commit 957a1cf

Browse files
committed
Got build working locally
1 parent e99876b commit 957a1cf

File tree

3 files changed

+40
-12
lines changed

3 files changed

+40
-12
lines changed

package-lock.json

+35-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
1717
"lint-fix": "npm run lint -- --fix",
1818
"get-mock-events": "node ./scripts/setMock.js",
19-
"setup-environment": "run: gpg --quiet --batch --yes --decrypt --passphrase=$GOOGLE_SERVICE_ACCOUNT_PASSPHRASE --output calendar-service-account.json calendar-service-account.json.gpg",
20-
"download-ics": "curl -o dist/basic.ics https: //calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics",
21-
"get-events": "node ./scripts/googleapi2events.js",
19+
"setup-environment": "gpg --quiet --batch --yes --decrypt --passphrase=${GOOGLE_SERVICE_ACCOUNT_PASSPHRASE} --output calendar-service-account.json calendar-service-account.json.gpg",
20+
"download-ics": "npx mkdirp dist && curl -o dist/basic.ics https://calendar.google.com/calendar/ical/finos.org_fac8mo1rfc6ehscg0d80fi8jig%40group.calendar.google.com/public/basic.ics",
21+
"get-events": "node ./scripts/googleapi2events.mjs",
2222
"getEvents": "npm run get-events",
2323
"test": "vitest"
2424
},
@@ -40,6 +40,7 @@
4040
},
4141
"devDependencies": {
4242
"html-to-text": "^9.0.5",
43-
"ical-generator": "^8.0.0"
43+
"ical-generator": "^8.0.0",
44+
"mkdirp": "^3.0.1"
4445
}
4546
}
File renamed without changes.

0 commit comments

Comments
 (0)