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

Attempt to fix build #196

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ coverage
*.gif

.DS_Store
.idea
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "react-dropzone-uploader",
"version": "2.11.0",
"name": "@cruisecritic/react-dropzone-uploader",
"version": "2.12.5",
"author": "Kyle Bebak <[email protected]>",
"description": "React file dropzone and uploader: fully customizable, progress indicators, upload cancellation and restart, zero deps and excellent TypeScript support",
"main": "./dist/react-dropzone-uploader.js",
"types": "./dist/Dropzone.tsx",
"types": "./dist/Dropzone.d.ts",
"keywords": [
"react",
"react-component",
Expand All @@ -23,9 +23,9 @@
},
"license": "MIT",
"peerDependencies": {
"prop-types": ">=15.5.10",
"react": ">=16.2.0",
"react-dom": ">=16.2.0",
"prop-types": ">=15.5.10"
"react-dom": ">=16.2.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
Expand All @@ -41,7 +41,7 @@
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-polyfill": "^6.26.0",
"css-loader": "^1.0.0",
"css-loader": "^6.7.1",
"docusaurus-init": "^1.0.2",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.7.0",
Expand All @@ -54,21 +54,22 @@
"react-styleguidist": "^8.0.6",
"react-test-renderer": "^16.6.3",
"react-toastify": "^4.5.2",
"style-loader": "^0.23.1",
"typescript": "^3.4.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"webpack": "^4.21.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14"
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.0",
"typescript": "^4.7.3",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.2"
},
"jest": {
"moduleNameMapper": {
"\\.(png|jpg|jpeg|gif|svg|woff|woff2)$": "<rootDir>/tests/fileMock.js"
}
},
"scripts": {
"build": "rm dist/* && tsc && NODE_ENV=production webpack --config webpack.build.config.js && cp src/styles.css dist/styles.css && cp src/*.ts* dist",
"build": "rm -rf dist && tsc && NODE_ENV=production webpack --config webpack.build.config.js",
"dev": "tsc -w -p tsconfig.dev.json & webpack-dev-server --config webpack.config.js --mode development --open",
"styleguide": "tsc -w & styleguidist server",
"build-styleguide": "tsc && styleguidist build",
Expand Down
4 changes: 3 additions & 1 deletion src/Dropzone.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,9 @@ class Dropzone extends React.Component<IDropzoneProps, { active: boolean; dragge
try {
params = await getUploadParams(fileWithMeta)
} catch (e) {
console.error('Error Upload Params', e.stack)
if (e instanceof Error) {
console.error('Error Upload Params', e.stack)
}
}
if (params === null) return
const { url, method = 'POST', body, fields = {}, headers = {}, meta: extraMeta = {} } = params
Expand Down
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true
"strict": true,
"outDir": "dist",
"declaration": true
},
"include": ["src/*.tsx", "src/*.ts"],
"exclude": ["node_modules"]
Expand Down
34 changes: 25 additions & 9 deletions webpack.build.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* eslint import/no-extraneous-dependencies: 0 */
const UglifyJSPlugin = require('uglifyjs-webpack-plugin')
const TerserPlugin = require("terser-webpack-plugin");
const path = require('path')
const CopyPlugin = require("copy-webpack-plugin");

if (process.env.NODE_ENV !== 'production') {
throw new Error('Production builds must have NODE_ENV=production.')
Expand All @@ -12,36 +13,51 @@ function createConfig(entry, output) {
entry,
output,
optimization: {
minimizer: [new UglifyJSPlugin()],
minimizer: [new TerserPlugin()],
},
module: {
rules: [
{
test: /\.js?$/,
exclude: /node_modules/,
use: 'babel-loader',
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader'],
loader: 'style-loader',
},
{
test: /\.(png|jpg|jpeg|gif|svg|woff|woff2)$/,
exclude: /node_modules/,
loader: 'url-loader?limit=10000',
loader: 'url-loader',
options: {
limit: 10000
}
},

],
},
resolve: {
extensions: ['.tsx', '.ts', '.js', '.js']
},
plugins: [
new CopyPlugin([
"src/styles.css",
{from: "src/assets/cancel.svg", to: "assets"},
{from: "src/assets/remove.svg", to: "assets"},
{from: "src/assets/restart.svg", to: "assets"},
]),
]
}
}

module.exports = [
createConfig('./src/Dropzone.js', {
createConfig('./src/Dropzone.tsx', {
path: path.resolve('dist'),
libraryTarget: 'commonjs2',
filename: 'react-dropzone-uploader.js',
}),
createConfig('./src/Dropzone.js', {
createConfig('./src/Dropzone.tsx', {
path: path.resolve('dist'),
libraryTarget: 'umd',
filename: 'react-dropzone-uploader.umd.js',
Expand Down
Loading