fix build errors
This commit is contained in:
parent
ade22f12e9
commit
a7a154832b
File diff suppressed because it is too large
Load Diff
|
@ -3,7 +3,6 @@
|
||||||
"version": "5.3.0",
|
"version": "5.3.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "gulp bundle",
|
"build": "gulp bundle",
|
||||||
"clean": "gulp clean",
|
"clean": "gulp clean",
|
||||||
|
@ -21,7 +20,6 @@
|
||||||
"@pnp/sp": "^1.2.8",
|
"@pnp/sp": "^1.2.8",
|
||||||
"@pnp/spfx-controls-react": "^1.11.0",
|
"@pnp/spfx-controls-react": "^1.11.0",
|
||||||
"@pnp/spfx-property-controls": "^1.13.1",
|
"@pnp/spfx-property-controls": "^1.13.1",
|
||||||
|
|
||||||
"feedparser": "^2.2.9",
|
"feedparser": "^2.2.9",
|
||||||
"ical.js": "^1.3.0",
|
"ical.js": "^1.3.0",
|
||||||
"ics-js": "^0.10.2",
|
"ics-js": "^0.10.2",
|
||||||
|
@ -40,17 +38,18 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.10.4",
|
"@babel/core": "^7.10.4",
|
||||||
"@babel/preset-env": "^7.10.4",
|
"@babel/preset-env": "^7.10.4",
|
||||||
"@microsoft/rush-stack-compiler-4.5": "0.2.2",
|
"@microsoft/eslint-config-spfx": "1.15.0",
|
||||||
|
"@microsoft/eslint-plugin-spfx": "1.15.0",
|
||||||
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
|
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
|
||||||
|
"@microsoft/rush-stack-compiler-4.5": "0.2.2",
|
||||||
"@microsoft/sp-build-web": "1.15.2",
|
"@microsoft/sp-build-web": "1.15.2",
|
||||||
"@microsoft/sp-module-interfaces": "1.15.0",
|
"@microsoft/sp-module-interfaces": "1.15.0",
|
||||||
"@rushstack/eslint-config": "2.5.1",
|
"@rushstack/eslint-config": "2.5.1",
|
||||||
"@microsoft/eslint-plugin-spfx":"1.15.0",
|
"@types/node": "18.11.3",
|
||||||
"@microsoft/eslint-config-spfx":"1.15.0",
|
|
||||||
"eslint-plugin-react-hooks":"4.3.0",
|
|
||||||
"eslint":"8.7.0",
|
|
||||||
"ajv": "6.12.5",
|
"ajv": "6.12.5",
|
||||||
"babel-loader": "^8.1.0",
|
"babel-loader": "^8.1.0",
|
||||||
|
"eslint": "8.7.0",
|
||||||
|
"eslint-plugin-react-hooks": "4.3.0",
|
||||||
"gulp": "4.0.2",
|
"gulp": "4.0.2",
|
||||||
"webpack": "^4.43.0"
|
"webpack": "^4.43.0"
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,8 @@ import { iCalCalendarService } from "./iCalCalendarService";
|
||||||
import { ExchangePublicCalendarService } from "./ExchangePublicCalendarService";
|
import { ExchangePublicCalendarService } from "./ExchangePublicCalendarService";
|
||||||
import { SharePointCalendarService } from "./SharePointCalendarService";
|
import { SharePointCalendarService } from "./SharePointCalendarService";
|
||||||
|
|
||||||
|
const DEBUG:boolean = false;
|
||||||
|
|
||||||
// Localization
|
// Localization
|
||||||
import * as strings from "CalendarServicesStrings";
|
import * as strings from "CalendarServicesStrings";
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
"./node_modules/@microsoft"
|
"./node_modules/@microsoft"
|
||||||
],
|
],
|
||||||
"types": [
|
"types": [
|
||||||
"webpack-env"
|
"node"
|
||||||
],
|
],
|
||||||
"lib": [
|
"lib": [
|
||||||
"es5",
|
"es5",
|
||||||
|
|
Loading…
Reference in New Issue