Skip to content

Commit

Permalink
deps-dev: remove direct axios dev dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Wolfgang <[email protected]>
  • Loading branch information
wofferl committed Jan 27, 2025
1 parent c4309b2 commit 4896f2a
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 10 deletions.
1 change: 0 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@
"@types/lodash": "^4.17.14",
"@types/webpack-env": "^1.18.5",
"@vue/test-utils": "^1.3.0",
"axios": "^1.7.9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-serializer-vue": "^3.1.0",
Expand Down
3 changes: 1 addition & 2 deletions src/dataservices/feed.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosResponse } from 'axios'
import axios from '@nextcloud/axios'
import axios, { AxiosResponse } from '@nextcloud/axios'

import { API_ROUTES } from '../types/ApiRoutes'

Expand Down
3 changes: 1 addition & 2 deletions src/dataservices/folder.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosResponse } from 'axios'
import axios from '@nextcloud/axios'
import axios, { AxiosResponse } from '@nextcloud/axios'

import { API_ROUTES } from '../types/ApiRoutes'

Expand Down
3 changes: 1 addition & 2 deletions src/dataservices/item.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import _ from 'lodash'
import { AxiosResponse } from 'axios'
import axios from '@nextcloud/axios'
import axios, { AxiosResponse } from '@nextcloud/axios'
import store from './../store/app'
import feedstore from './../store/feed'

Expand Down
3 changes: 1 addition & 2 deletions src/dataservices/share.service.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { AxiosResponse } from 'axios'
import axios from '@nextcloud/axios'
import axios, { AxiosResponse } from '@nextcloud/axios'
import { generateOcsUrl } from '@nextcloud/router'

export class ShareService {
Expand Down

0 comments on commit 4896f2a

Please sign in to comment.