Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

meta: fix React linter rules #5317

Merged
merged 2 commits into from
Jul 9, 2024
Merged

meta: fix React linter rules #5317

merged 2 commits into from
Jul 9, 2024

Conversation

aduh95
Copy link
Contributor

@aduh95 aduh95 commented Jul 9, 2024

No description provided.

Copy link
Contributor

github-actions bot commented Jul 9, 2024

Diff output files
diff --git a/packages/@uppy/vue/lib/dashboard-modal.js b/packages/@uppy/vue/lib/dashboard-modal.js
index ff5a78b..add74c2 100644
--- a/packages/@uppy/vue/lib/dashboard-modal.js
+++ b/packages/@uppy/vue/lib/dashboard-modal.js
@@ -1,7 +1,7 @@
 import { Uppy } from "@uppy/core";
 import DashboardPlugin from "@uppy/dashboard";
 import { defineComponent, h, ref, watch } from "vue";
-import useUppy from "./useUppy";
+import useUppy from "./useUppy.js";
 export default defineComponent({
   name: "DashboardModal",
   props: {
diff --git a/packages/@uppy/vue/lib/dashboard.js b/packages/@uppy/vue/lib/dashboard.js
index 586d010..fb66768 100644
--- a/packages/@uppy/vue/lib/dashboard.js
+++ b/packages/@uppy/vue/lib/dashboard.js
@@ -1,6 +1,6 @@
 import DashboardPlugin from "@uppy/dashboard";
 import { defineComponent, h, ref } from "vue";
-import useUppy from "./useUppy";
+import useUppy from "./useUppy.js";
 export default defineComponent({
   name: "Dashboard",
   props: {
diff --git a/packages/@uppy/vue/lib/drag-drop.js b/packages/@uppy/vue/lib/drag-drop.js
index af4d91f..ad56925 100644
--- a/packages/@uppy/vue/lib/drag-drop.js
+++ b/packages/@uppy/vue/lib/drag-drop.js
@@ -1,7 +1,7 @@
 import { Uppy } from "@uppy/core";
 import DragDropPlugin from "@uppy/drag-drop";
 import { defineComponent, h, ref } from "vue";
-import useUppy from "./useUppy";
+import useUppy from "./useUppy.js";
 export default defineComponent({
   name: "DragDrop",
   props: {
diff --git a/packages/@uppy/vue/lib/file-input.js b/packages/@uppy/vue/lib/file-input.js
index 61f609c..721cd2b 100644
--- a/packages/@uppy/vue/lib/file-input.js
+++ b/packages/@uppy/vue/lib/file-input.js
@@ -1,7 +1,7 @@
 import { Uppy } from "@uppy/core";
 import FileInputPlugin from "@uppy/file-input";
 import { defineComponent, h, ref } from "vue";
-import useUppy from "./useUppy";
+import useUppy from "./useUppy.js";
 export default defineComponent({
   name: "FileInput",
   props: {
diff --git a/packages/@uppy/vue/lib/progress-bar.js b/packages/@uppy/vue/lib/progress-bar.js
index 63b2d9e..4c18095 100644
--- a/packages/@uppy/vue/lib/progress-bar.js
+++ b/packages/@uppy/vue/lib/progress-bar.js
@@ -1,7 +1,7 @@
 import { Uppy } from "@uppy/core";
 import ProgressBarPlugin from "@uppy/progress-bar";
 import { defineComponent, h, ref } from "vue";
-import useUppy from "./useUppy";
+import useUppy from "./useUppy.js";
 export default defineComponent({
   name: "ProgressBar",
   props: {
diff --git a/packages/@uppy/vue/lib/status-bar.js b/packages/@uppy/vue/lib/status-bar.js
index 7efb087..cd9dd7e 100644
--- a/packages/@uppy/vue/lib/status-bar.js
+++ b/packages/@uppy/vue/lib/status-bar.js
@@ -1,7 +1,7 @@
 import { Uppy } from "@uppy/core";
 import StatusBarPlugin from "@uppy/status-bar";
 import { defineComponent, h, ref } from "vue";
-import useUppy from "./useUppy";
+import useUppy from "./useUppy.js";
 export default defineComponent({
   name: "StatusBar",
   props: {

Copy link
Member

@Murderlon Murderlon left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch.

@aduh95 aduh95 merged commit 473e164 into 4.x Jul 9, 2024
17 checks passed
@aduh95 aduh95 deleted the fix-react-lint-rules branch July 9, 2024 13:24
@github-actions github-actions bot mentioned this pull request Jul 10, 2024
github-actions bot added a commit that referenced this pull request Jul 10, 2024
| Package                   | Version | Package                   | Version |
| ------------------------- | ------- | ------------------------- | ------- |
| @uppy/angular             |   0.7.0 | @uppy/onedrive            |   4.0.0 |
| @uppy/audio               |   2.0.0 | @uppy/progress-bar        |   4.0.0 |
| @uppy/aws-s3              |   4.0.0 | @uppy/provider-views      |   4.0.0 |
| @uppy/aws-s3-multipart    |   4.0.0 | @uppy/react               |   4.0.0 |
| @uppy/box                 |   3.0.0 | @uppy/react-native        |   0.6.0 |
| @uppy/companion           |   5.0.0 | @uppy/redux-dev-tools     |   4.0.0 |
| @uppy/companion-client    |   4.0.0 | @uppy/remote-sources      |   2.0.0 |
| @uppy/compressor          |   2.0.0 | @uppy/screen-capture      |   4.0.0 |
| @uppy/core                |   4.0.0 | @uppy/status-bar          |   4.0.0 |
| @uppy/dashboard           |   4.0.0 | @uppy/store-default       |   4.0.0 |
| @uppy/drag-drop           |   4.0.0 | @uppy/store-redux         |   4.0.0 |
| @uppy/drop-target         |   3.0.0 | @uppy/svelte              |   4.0.0 |
| @uppy/dropbox             |   4.0.0 | @uppy/thumbnail-generator |   4.0.0 |
| @uppy/facebook            |   4.0.0 | @uppy/transloadit         |   4.0.0 |
| @uppy/file-input          |   4.0.0 | @uppy/tus                 |   4.0.0 |
| @uppy/form                |   4.0.0 | @uppy/unsplash            |   4.0.0 |
| @uppy/golden-retriever    |   4.0.0 | @uppy/url                 |   4.0.0 |
| @uppy/google-drive        |   4.0.0 | @uppy/utils               |   6.0.0 |
| @uppy/google-photos       |   0.2.0 | @uppy/vue                 |   2.0.0 |
| @uppy/image-editor        |   3.0.0 | @uppy/webcam              |   4.0.0 |
| @uppy/informer            |   4.0.0 | @uppy/xhr-upload          |   4.0.0 |
| @uppy/instagram           |   4.0.0 | @uppy/zoom                |   3.0.0 |
| @uppy/locales             |   4.0.0 | uppy                      |   4.0.0 |

- meta: Bump docker/setup-qemu-action from 3.0.0 to 3.1.0 (dependabot[bot] / #5314)
- meta: Bump docker/build-push-action from 6.2.0 to 6.3.0 (dependabot[bot] / #5313)
- @uppy/core: bring back resetProgress (Merlijn Vos / #5320)
- docs: add note regarding `COMPANION_CLIENT_ORIGINS_REGEX` (Antoine du Hamel / #5322)
- @uppy/companion: make streaming upload default to `true` (Mikael Finstad / #5315)
- docs: change slug for aws docs (Merlijn Vos / #5321)
- @uppy/core: export UppyOptions, UppyFile, Meta, Body (Merlijn Vos / #5319)
- meta: fix React linter rules (Antoine du Hamel / #5317)
- meta: enforce use of extension in import type declarations (Antoine du Hamel / #5316)
- @uppy/companion: remove `oauthOrigin` (Antoine du Hamel / #5311)
- docs,@uppy/companion-client: don't close socket when pausing (Mikael Finstad / #4821)
- @uppy/aws-s3: fix signing on client for bucket name with dots (Antoine du Hamel / #5312)
- @uppy/react: introduce useUppyEvent (Merlijn Vos / #5264)
- @uppy/companion: do not list Node.js 20.12 as compatible (Antoine du Hamel / #5309)
- @uppy/provider-views: `.openFolder()` - return progress indication (Evgenia Karunus / #5306)
- examples,@uppy/companion: Release: uppy@3.27.3 (github-actions[bot] / #5304)
- @uppy/companion: fix `TypeError` when parsing request (Antoine du Hamel / #5303)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants