Upgrade dependencies (#126)

This commit is contained in:
Quang Lam 2020-02-03 21:28:36 -06:00 committed by GitHub
parent 2f3737faf2
commit e49df8d438
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 2467 additions and 1482 deletions

View file

@ -15,15 +15,15 @@
"build:publish": "node scripts/publish.js"
},
"dependencies": {
"algoliasearch": "3.33.0",
"algoliasearch": "4.0.1",
"chai": "4.2.0",
"clean-deep": "3.0.2",
"clean-deep": "3.2.0",
"fs-extra": "8.1.0",
"image-size": "0.7.4",
"image-size": "0.8.3",
"is-url": "1.2.4",
"mocha": "6.1.4",
"mocha": "7.0.1",
"promise-queue": "2.2.5",
"sharp": "0.22.1",
"sharp": "0.24.0",
"slugg": "1.2.1",
"yamljs": "0.3.0"
}

View file

@ -10,7 +10,7 @@ const indexName = 'apps';
const tmpIndexName = `tmp_apps_${Date.now().toString()}`;
const tmpIndex = client.initIndex(tmpIndexName);
tmpIndex.addObjects(apps)
tmpIndex.saveObjects(apps, { autoGenerateObjectIDIfNotExist: true })
.then(() => tmpIndex.setSettings({ customRanking: ['asc(name)'] }))
.then(() => client.moveIndex(tmpIndexName, indexName))
.catch((err) => {

File diff suppressed because it is too large Load diff

View file

@ -29,41 +29,41 @@
"electron-is-dev": "1.1.0",
"electron-settings": "3.2.0",
"electron-spellchecker": "2.2.1",
"electron-updater": "4.1.2",
"electron-updater": "4.2.0",
"electron-window-state": "5.0.3",
"follow-redirects": "1.9.0",
"follow-redirects": "1.10.0",
"fs-extra": "8.1.0",
"is-url": "1.2.4",
"jimp": "0.6.8",
"menubar": "7.1.0",
"menubar": "7.2.0",
"node-fetch": "2.6.0",
"request": "2.88.0",
"request-promise-native": "1.0.8",
"semver": "6.3.0",
"semver": "7.1.2",
"tmp": "0.1.0",
"uuid": "3.3.3"
"uuid": "3.4.0"
},
"devDependencies": {
"@date-io/date-fns": "1.3.13",
"@material-ui/core": "3.9.4",
"@material-ui/icons": "3.0.2",
"algoliasearch": "3.35.1",
"algoliasearch": "4.0.1",
"babel-eslint": "10.0.3",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"blueimp-md5": "2.12.0",
"classnames": "2.2.6",
"concurrently": "5.0.2",
"cross-env": "6.0.3",
"date-fns": "2.8.1",
"concurrently": "5.1.0",
"cross-env": "7.0.0",
"date-fns": "2.9.0",
"electron": "6.1.6",
"electron-builder": "21.2.0",
"electron-notarize": "0.1.1",
"eslint": "6.6.0",
"electron-builder": "22.3.2",
"electron-notarize": "0.2.1",
"eslint": "6.8.0",
"eslint-config-airbnb": "18.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"eslint-plugin-react": "7.18.3",
"eslint-plugin-react-hooks": "1.7.0",
"lodash.camelcase": "4.3.0",
"material-ui-pickers": "2.2.4",
@ -71,12 +71,12 @@
"react": "16.12.0",
"react-dom": "16.12.0",
"react-redux": "6.0.1",
"react-scripts": "3.3.0",
"react-sortable-hoc": "1.10.1",
"react-scripts": "3.3.1",
"react-sortable-hoc": "1.11.0",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"typeface-roboto": "0.0.75",
"wait-on": "3.3.0"
"wait-on": "4.0.0"
},
"homepage": "./",
"private": true,

View file

@ -41,9 +41,9 @@ const DialogLicenseRegistration = (props) => {
<DialogContent>
<DialogContentText className={classes.dialogContentText}>
You are currently running a trial version of Singlebox which only
lets you add up to two workspaces.
To remove the trial limitations, please purchase a
perpetual license key ($9.99) from our store.
lets you add up to two workspaces.
To remove the trial limitations, please purchase a
perpetual license key ($9.99) from our store.
</DialogContentText>
<TextField
fullWidth

View file

@ -42,8 +42,7 @@ export const getHits = () => (dispatch, getState) => {
type: ADD_WORKSPACE_GET_REQUEST,
});
index.search({
query: currentQuery,
index.search(currentQuery, {
page: page + 1,
hitsPerPage: 24,
})

2992
yarn.lock

File diff suppressed because it is too large Load diff