Skip to content

Commit

Permalink
attemps
Browse files Browse the repository at this point in the history
  • Loading branch information
Murderlon committed Nov 29, 2021
1 parent a5d4bbd commit 6494bb7
Show file tree
Hide file tree
Showing 5 changed files with 808 additions and 4 deletions.
7 changes: 4 additions & 3 deletions cypress/package.json
Expand Up @@ -9,9 +9,10 @@
"preview": "vite preview"
},
"dependencies": {
"cypress": "^9.0.0",
"vite": "^2.6.14",
"@uppy/core": "workspace:^",
"@uppy/dashboard": "workspace:^"
"@uppy/dashboard": "workspace:^",
"cypress": "^9.0.0",
"parcel": "^2.0.1",
"vite": "^2.6.14"
}
}
7 changes: 7 additions & 0 deletions cypress/parcel/app.js
@@ -0,0 +1,7 @@
import { Uppy } from '@uppy/core'
import Dashboard from '@uppy/dashboard'

import '@uppy/core/dist/style.css'
import '@uppy/dashboard/dist/style.css'

new Uppy().use(Dashboard, { target: '#app', inline: true })
12 changes: 12 additions & 0 deletions cypress/parcel/index.html
@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>My First Parcel App</title>
<script defer type="module" src="app.js"></script>
</head>
<body>
<h1>Hello, World!</h1>
<div id="app"></div>
</body>
</html>
2 changes: 1 addition & 1 deletion packages/@uppy/dashboard/src/locale.js
Expand Up @@ -63,7 +63,7 @@ module.exports = {
editFileWithFilename: 'Edit file %{file}',
save: 'Save',
cancel: 'Cancel',
dropPasteFiles: 'Drop files here or %{browseFiles}',
dropPasteFiles: 'Drop files here or %{browseFiles} BITCH',
dropPasteFolders: 'Drop files here or %{browseFolders}',
dropPasteBoth: 'Drop files here, %{browseFiles} or %{browseFolders}',
dropPasteImportFiles: 'Drop files here, %{browseFiles} or import from:',
Expand Down

0 comments on commit 6494bb7

Please sign in to comment.