mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-24 10:47:44 +00:00
Merge pull request #523 from transloadit/deps
Dependency version updates
This commit is contained in:
commit
29cbe67a3d
9 changed files with 14583 additions and 7416 deletions
3
Makefile
3
Makefile
|
|
@ -3,6 +3,9 @@
|
|||
#
|
||||
# https://www.npmjs.com/package/fakefile
|
||||
#
|
||||
# Please do not edit this file directly, but propose changed upstream instead:
|
||||
# https://github.com/kvz/fakefile/blob/master/Makefile
|
||||
#
|
||||
# This Makefile offers convience shortcuts into any Node.js project that utilizes npm scripts.
|
||||
# It functions as a wrapper around the actual listed in `package.json`
|
||||
# So instead of typing:
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ var autoprefixer = require('autoprefixer')
|
|||
var cssnano = require('cssnano')
|
||||
var chalk = require('chalk')
|
||||
var fs = require('fs')
|
||||
var path = require('path')
|
||||
var mkdirp = require('mkdirp')
|
||||
|
||||
mkdirp.sync('./dist/')
|
||||
|
|
@ -17,7 +18,7 @@ function minifyCSS () {
|
|||
fs.readFile('./dist/uppy.css', function (err, css) {
|
||||
if (err) handleErr(err)
|
||||
postcss([ cssnano ])
|
||||
.process(css)
|
||||
.process(css, { from: path.join(__dirname, '../dist/uppy.css') })
|
||||
.then(function (postCSSResult) {
|
||||
postCSSResult.warnings().forEach(function (warn) {
|
||||
console.warn(warn.toString())
|
||||
|
|
@ -37,7 +38,7 @@ function compileCSS () {
|
|||
sass.render({file: './src/scss/uppy.scss'}, function (err, sassResult) {
|
||||
if (err) handleErr(err)
|
||||
postcss([ autoprefixer ])
|
||||
.process(sassResult.css)
|
||||
.process(sassResult.css, { from: path.join(__dirname, '../src/scss/uppy.scss') })
|
||||
.then(function (postCSSResult) {
|
||||
postCSSResult.warnings().forEach(function (warn) {
|
||||
console.warn(warn.toString())
|
||||
|
|
|
|||
15
bin/start-server.js
Normal file
15
bin/start-server.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
// Set up environment variables, see
|
||||
// https://uppy.io/docs/server/
|
||||
Object.assign(process.env, {
|
||||
UPPYSERVER_SECRET: 'development',
|
||||
UPPYSERVER_DATADIR: './output',
|
||||
UPPYSERVER_DOMAIN: 'localhost:3020',
|
||||
UPPYSERVER_PROTOCOL: 'http',
|
||||
UPPYSERVER_PORT: '3020',
|
||||
UPPY_ENDPOINT: 'localhost:3452',
|
||||
UPPY_ENDPOINTS: 'localhost:3452'
|
||||
})
|
||||
|
||||
require('uppy-server/lib/standalone/start-server')
|
||||
8146
package-lock.json
generated
8146
package-lock.json
generated
File diff suppressed because it is too large
Load diff
85
package.json
85
package.json
|
|
@ -45,77 +45,74 @@
|
|||
]
|
||||
},
|
||||
"devDependencies": {
|
||||
"autoprefixer": "6.3.7",
|
||||
"babel-cli": "6.11.4",
|
||||
"babel-core": "6.13.2",
|
||||
"babel-eslint": "6.1.2",
|
||||
"babel-jest": "^22.0.0",
|
||||
"autoprefixer": "^7.2.5",
|
||||
"babel-cli": "^6.26.0",
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-jest": "^22.0.6",
|
||||
"babel-plugin-add-module-exports": "0.2.1",
|
||||
"babel-plugin-es6-promise": "1.0.0",
|
||||
"babel-plugin-transform-object-assign": "6.8.0",
|
||||
"babel-plugin-transform-proto-to-assign": "6.9.0",
|
||||
"babel-plugin-es6-promise": "^1.1.1",
|
||||
"babel-plugin-transform-object-assign": "^6.22.0",
|
||||
"babel-plugin-transform-proto-to-assign": "^6.26.0",
|
||||
"babel-plugin-transform-react-jsx": "^6.24.1",
|
||||
"babel-polyfill": "6.9.1",
|
||||
"babel-preset-es2015": "6.24.0",
|
||||
"babel-register": "6.9.0",
|
||||
"babelify": "7.3.0",
|
||||
"browser-sync": "2.18.8",
|
||||
"browserify": "14.1.0",
|
||||
"babel-polyfill": "^6.26.0",
|
||||
"babel-preset-es2015": "^6.24.1",
|
||||
"babel-register": "^6.26.0",
|
||||
"babelify": "^8.0.0",
|
||||
"browser-sync": "^2.23.5",
|
||||
"browserify": "^15.1.0",
|
||||
"chalk": "1.1.3",
|
||||
"cssnano": "3.7.3",
|
||||
"disc": "1.3.2",
|
||||
"cssnano": "^3.10.0",
|
||||
"disc": "^1.3.3",
|
||||
"eslint": "^3.19.0",
|
||||
"eslint-config-standard": "^10.2.1",
|
||||
"eslint-config-standard-preact": "^1.1.6",
|
||||
"eslint-plugin-import": "^2.7.0",
|
||||
"eslint-plugin-jest": "^21.5.0",
|
||||
"eslint-plugin-import": "^2.8.0",
|
||||
"eslint-plugin-jest": "^21.6.2",
|
||||
"eslint-plugin-node": "^4.2.3",
|
||||
"eslint-plugin-promise": "^3.5.0",
|
||||
"eslint-plugin-promise": "^3.6.0",
|
||||
"eslint-plugin-standard": "^3.0.1",
|
||||
"exorcist": "0.4.0",
|
||||
"fakefile": "0.0.8",
|
||||
"glob": "7.1.1",
|
||||
"exorcist": "^1.0.0",
|
||||
"fakefile": "0.0.9",
|
||||
"glob": "^7.1.2",
|
||||
"isomorphic-fetch": "2.2.1",
|
||||
"jest": "^22.0.0",
|
||||
"lint-staged": "2.0.2",
|
||||
"jest": "^22.0.6",
|
||||
"lint-staged": "^6.0.0",
|
||||
"minify-stream": "^1.1.0",
|
||||
"mkdirp": "0.5.1",
|
||||
"multi-glob": "1.0.1",
|
||||
"next-update": "1.2.2",
|
||||
"nock": "8.0.0",
|
||||
"node-sass": "4.5.0",
|
||||
"nodemon": "1.8.1",
|
||||
"npm-run-all": "2.3.0",
|
||||
"onchange": "3.2.1",
|
||||
"postcss": "5.1.0",
|
||||
"pre-commit": "1.1.3",
|
||||
"next-update": "^3.6.0",
|
||||
"node-sass": "^4.7.2",
|
||||
"npm-run-all": "^4.1.2",
|
||||
"onchange": "^3.3.0",
|
||||
"postcss": "^6.0.16",
|
||||
"pre-commit": "^1.2.2",
|
||||
"redux": "^3.7.2",
|
||||
"sass": "0.5.0",
|
||||
"tape": "^4.8.0",
|
||||
"temp-write": "^3.4.0",
|
||||
"tinyify": "^1.0.0",
|
||||
"uppy-server": "0.0.7",
|
||||
"watchify": "3.7.0",
|
||||
"wdio-mocha-framework": "^0.5.11",
|
||||
"wdio-sauce-service": "^0.4.4",
|
||||
"tinyify": "^2.4.0",
|
||||
"uppy-server": "^0.10.0",
|
||||
"watchify": "^3.9.0",
|
||||
"wdio-mocha-framework": "^0.5.12",
|
||||
"wdio-sauce-service": "^0.4.6",
|
||||
"wdio-static-server-service": "^1.0.1",
|
||||
"webdriverio": "^4.9.5"
|
||||
"webdriverio": "^4.10.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"classnames": "^2.2.5",
|
||||
"cuid": "^1.3.8",
|
||||
"cuid": "^2.0.2",
|
||||
"drag-drop": "2.13.2",
|
||||
"es6-promise": "3.2.1",
|
||||
"get-form-data": "^1.2.5",
|
||||
"es6-promise": "^4.2.2",
|
||||
"get-form-data": "^2.0.0",
|
||||
"lodash.throttle": "4.1.1",
|
||||
"mime-match": "^1.0.2",
|
||||
"namespace-emitter": "^2.0.0",
|
||||
"preact": "^8.2.7",
|
||||
"prettier-bytes": "1.0.4",
|
||||
"prop-types": "^15.5.10",
|
||||
"socket.io-client": "2.0.2",
|
||||
"socket.io-client": "^2.0.4",
|
||||
"tus-js-client": "^1.4.5",
|
||||
"url-parse": "1.1.9",
|
||||
"url-parse": "^1.2.0",
|
||||
"whatwg-fetch": "2.0.3"
|
||||
},
|
||||
"scripts": {
|
||||
|
|
@ -134,7 +131,7 @@
|
|||
"release:minor": "env SEMANTIC=minor npm run release",
|
||||
"release:patch": "env SEMANTIC=patch npm run release",
|
||||
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && git push && git push --tags && npm publish",
|
||||
"start:server": "cd ./node_modules/uppy-server && npm run start",
|
||||
"start:server": "node bin/start-server",
|
||||
"start": "npm-run-all --parallel watch start:server web:preview",
|
||||
"test:acceptance:handleservers": "bin/bootandkill-servers node test/acceptance/index.js",
|
||||
"test:acceptance": "./bin/endtoend-build && wdio test/endtoend/wdio.remote.conf.js",
|
||||
|
|
|
|||
|
|
@ -13,8 +13,8 @@ logo_large: /images/logos/uppy-dog-full.svg
|
|||
logo_medium: /images/logos/uppy-dog-head-arrow.svg
|
||||
logo_icon: /images/logos/uppy-dog-head-arrow.png
|
||||
description: >
|
||||
Sleek, modular file uploader that integrates seamlessly with any framework.
|
||||
It fetches files from local disk, Google Drive, Dropbox, Instagram, remote URLs, cameras and other exciting locations, and then uploads them to the final destination.
|
||||
Sleek, modular file uploader that integrates seamlessly with any framework.
|
||||
It fetches files from local disk, Google Drive, Dropbox, Instagram, remote URLs, cameras and other exciting locations, and then uploads them to the final destination.
|
||||
It’s fast, easy to use and let's you worry about more important problems than building a file uploader.
|
||||
descriptionWho: >
|
||||
Uppy is brought to you by the people
|
||||
|
|
|
|||
|
|
@ -26,9 +26,6 @@ var chalk = require('chalk')
|
|||
var path = require('path')
|
||||
var mkdirp = require('mkdirp')
|
||||
var notifier = require('node-notifier')
|
||||
// consider enabling this
|
||||
// var rollupify = require('rollupify')
|
||||
// var yoyoify = require('yo-yoify')
|
||||
var babelify = require('babelify')
|
||||
var aliasify = require('aliasify')
|
||||
var browserify = require('browserify')
|
||||
|
|
|
|||
13689
website/package-lock.json
generated
13689
website/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -6,43 +6,40 @@
|
|||
"version": "3.3.7"
|
||||
},
|
||||
"dependencies": {
|
||||
"autoprefixer": "6.4.0",
|
||||
"cssnano": "3.7.3",
|
||||
"hexo": "^3.3.7",
|
||||
"hexo-browsersync": "0.2.0",
|
||||
"hexo-deployer-git": "0.2.0",
|
||||
"autoprefixer": "^7.2.5",
|
||||
"cssnano": "^3.10.0",
|
||||
"hexo": "^3.4.4",
|
||||
"hexo-browsersync": "^0.3.0",
|
||||
"hexo-deployer-git": "^0.3.1",
|
||||
"hexo-generator-alias": "^0.1.3",
|
||||
"hexo-generator-archive": "0.1.4",
|
||||
"hexo-generator-category": "0.1.3",
|
||||
"hexo-generator-feed": "1.2.0",
|
||||
"hexo-generator-index": "0.2.0",
|
||||
"hexo-generator-tag": "0.2.0",
|
||||
"hexo-renderer-ejs": "0.2.0",
|
||||
"hexo-renderer-marked": "0.3.0",
|
||||
"hexo-renderer-postcss": "https://github.com/arturi/hexo-renderer-postcss#afca2bc12f5816067b15a9d24017c70e077b9f0b",
|
||||
"hexo-renderer-scss": "1.0.2",
|
||||
"hexo-generator-archive": "^0.1.5",
|
||||
"hexo-generator-category": "^0.1.3",
|
||||
"hexo-generator-feed": "^1.2.2",
|
||||
"hexo-generator-index": "^0.2.1",
|
||||
"hexo-generator-tag": "^0.2.0",
|
||||
"hexo-renderer-ejs": "^0.2.0",
|
||||
"hexo-renderer-marked": "^0.3.2",
|
||||
"hexo-renderer-postcss": "https://github.com/goto-bus-stop/hexo-renderer-postcss#new-postcss",
|
||||
"hexo-renderer-scss": "^1.1.0",
|
||||
"hexo-server": "^0.2.1",
|
||||
"hexo-tag-emojis": "2.0.1",
|
||||
"hexo-util": "0.6.0",
|
||||
"js-yaml": "3.6.1",
|
||||
"hexo-tag-emojis": "^2.0.1",
|
||||
"hexo-util": "^0.6.3",
|
||||
"js-yaml": "^3.10.0",
|
||||
"mkdirp": "0.5.1",
|
||||
"postcss-inline-svg": "2.0.1",
|
||||
"uuid": "2.0.2"
|
||||
"postcss-inline-svg": "^3.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"aliasify": "^2.1.0",
|
||||
"babelify": "^7.3.0",
|
||||
"browserify": "13.1.0",
|
||||
"babel-core": "^6.26.0",
|
||||
"babelify": "^8.0.0",
|
||||
"browserify": "^15.1.0",
|
||||
"chalk": "1.1.3",
|
||||
"documentation": "4.0.0-beta9",
|
||||
"eslint": "3.3.1",
|
||||
"eslint-config-standard": "5.3.5",
|
||||
"eslint-plugin-standard": "2.0.0",
|
||||
"glob": "7.0.5",
|
||||
"mdast-util-inject": "1.1.0",
|
||||
"multi-glob": "1.0.1",
|
||||
"node-notifier": "^5.1.2",
|
||||
"node-notifier": "^5.2.1",
|
||||
"remark": "5.0.1",
|
||||
"watchify": "3.7.0"
|
||||
"watchify": "^3.9.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue