Skip to content

Commit b428800

Browse files
committed
swap @girder/oauth-client to @resonant/oauth-client
1 parent 7640873 commit b428800

File tree

5 files changed

+31
-21
lines changed

5 files changed

+31
-21
lines changed

client/package-lock.json

Lines changed: 27 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"type": "vue-tsc --noEmit"
1414
},
1515
"dependencies": {
16-
"@girder/oauth-client": "^0.8.0",
1716
"@mapbox/mapbox-gl-draw": "^1.5.0",
1817
"@mdi/font": "^7.4.47",
18+
"@resonant/oauth-client": "^1.0.3",
1919
"@turf/bearing": "^7.1.0",
2020
"@turf/center": "^7.1.0",
2121
"@turf/centroid": "^7.1.0",

client/src/api/UVDATApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import axios, { AxiosInstance, AxiosRequestHeaders } from 'axios';
22
import { ref } from 'vue';
3-
import OauthClient from '@girder/oauth-client/dist/oauth-client';
3+
import OauthClient from '@resonant/oauth-client/dist/oauth-client';
44
import {
55
AbstractMapLayer,
66
AbstractMapLayerListItem,

client/src/plugins/Oauth.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable vue/max-len */
2-
import OauthClient from '@girder/oauth-client';
2+
import OauthClient from '@resonant/oauth-client';
33
import { ref } from 'vue';
44
import UVdatApi from '../api/UVDATApi';
55
import { createS3ffClient } from './S3FileField';

client/src/views/HomePage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {
33
computed, defineComponent, inject, onMounted, ref,
44
watch,
55
} from 'vue';
6-
import OAuthClient from '@girder/oauth-client';
6+
import OAuthClient from '@resonant/oauth-client';
77
import MapVue from '../components/Map.vue';
88
import SourceSelection from './SourceSelection.vue';
99
import MapStore from '../MapStore';

0 commit comments

Comments
 (0)