mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
feature: cloudcmd: fullstore v4.0.0
This commit is contained in:
parent
fb115c675e
commit
024bc41345
13 changed files with 12 additions and 13 deletions
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
/* global CloudCmd, DOM */
|
/* global CloudCmd, DOM */
|
||||||
const clipboard = require('@cloudcmd/clipboard');
|
const clipboard = require('@cloudcmd/clipboard');
|
||||||
const fullstore = require('fullstore');
|
const {fullstore} = require('fullstore');
|
||||||
|
|
||||||
const Buffer = require('../dom/buffer');
|
const Buffer = require('../dom/buffer');
|
||||||
const Events = require('../dom/events');
|
const Events = require('../dom/events');
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const fullstore = require('fullstore');
|
const {fullstore} = require('fullstore');
|
||||||
const limier = require('limier');
|
const limier = require('limier');
|
||||||
|
|
||||||
const searchStore = fullstore([]);
|
const searchStore = fullstore([]);
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const fullstore = require('fullstore');
|
const {fullstore} = require('fullstore');
|
||||||
const store = fullstore('');
|
const store = fullstore('');
|
||||||
const visual = fullstore(false);
|
const visual = fullstore(false);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
CloudCmd.EditFile = exports;
|
CloudCmd.EditFile = exports;
|
||||||
|
|
||||||
const Format = require('format-io');
|
const Format = require('format-io');
|
||||||
const fullstore = require('fullstore');
|
const {fullstore} = require('fullstore');
|
||||||
const exec = require('execon');
|
const exec = require('execon');
|
||||||
const supermenu = require('supermenu');
|
const supermenu = require('supermenu');
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
/* global CloudCmd, gritty */
|
/* global CloudCmd, gritty */
|
||||||
const {promisify} = require('es6-promisify');
|
const {promisify} = require('es6-promisify');
|
||||||
const {tryToCatch} = require('try-to-catch');
|
const {tryToCatch} = require('try-to-catch');
|
||||||
const fullstore = require('fullstore');
|
const {fullstore} = require('fullstore');
|
||||||
|
|
||||||
require('../../css/terminal.css');
|
require('../../css/terminal.css');
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ require('../../../css/user-menu.css');
|
||||||
|
|
||||||
const currify = require('currify');
|
const currify = require('currify');
|
||||||
const wraptile = require('wraptile');
|
const wraptile = require('wraptile');
|
||||||
const fullstore = require('fullstore');
|
const {fullstore} = require('fullstore');
|
||||||
const load = require('load.js');
|
const load = require('load.js');
|
||||||
const createElement = require('@cloudcmd/create-element');
|
const createElement = require('@cloudcmd/create-element');
|
||||||
const {tryCatch} = require('try-catch');
|
const {tryCatch} = require('try-catch');
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
const fullstore = require('fullstore');
|
const {fullstore} = require('fullstore');
|
||||||
|
|
||||||
const {
|
const {
|
||||||
J,
|
J,
|
||||||
|
|
|
||||||
|
|
@ -116,4 +116,3 @@ test('util: escapeRegExp', (t) => {
|
||||||
t.equal(escapeRegExp('#hello'), '\\#hello');
|
t.equal(escapeRegExp('#hello'), '\\#hello');
|
||||||
t.end();
|
t.end();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,7 @@
|
||||||
"find-up": "^8.0.0",
|
"find-up": "^8.0.0",
|
||||||
"for-each-key": "^2.0.0",
|
"for-each-key": "^2.0.0",
|
||||||
"format-io": "^2.0.0",
|
"format-io": "^2.0.0",
|
||||||
"fullstore": "^3.0.0",
|
"fullstore": "^4.0.0",
|
||||||
"http-auth": "^4.2.1",
|
"http-auth": "^4.2.1",
|
||||||
"inly": "^5.0.0",
|
"inly": "^5.0.0",
|
||||||
"jaguar": "^6.0.0",
|
"jaguar": "^6.0.0",
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import path, {dirname, join} from 'node:path';
|
||||||
import {fileURLToPath} from 'node:url';
|
import {fileURLToPath} from 'node:url';
|
||||||
import process from 'node:process';
|
import process from 'node:process';
|
||||||
import fs from 'node:fs';
|
import fs from 'node:fs';
|
||||||
import fullstore from 'fullstore';
|
import {fullstore} from 'fullstore';
|
||||||
import currify from 'currify';
|
import currify from 'currify';
|
||||||
import apart from 'apart';
|
import apart from 'apart';
|
||||||
import ponse from 'ponse';
|
import ponse from 'ponse';
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import path, {dirname} from 'node:path';
|
||||||
import {fileURLToPath} from 'node:url';
|
import {fileURLToPath} from 'node:url';
|
||||||
import process from 'node:process';
|
import process from 'node:process';
|
||||||
import fs from 'node:fs';
|
import fs from 'node:fs';
|
||||||
import fullstore from 'fullstore';
|
import {fullstore} from 'fullstore';
|
||||||
import * as nanomemoizeDefault from 'nano-memoize';
|
import * as nanomemoizeDefault from 'nano-memoize';
|
||||||
import readFilesSync from '@cloudcmd/read-files-sync';
|
import readFilesSync from '@cloudcmd/read-files-sync';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import currify from 'currify';
|
import currify from 'currify';
|
||||||
import wraptile from 'wraptile';
|
import wraptile from 'wraptile';
|
||||||
import squad from 'squad';
|
import squad from 'squad';
|
||||||
import fullstore from 'fullstore';
|
import {fullstore} from 'fullstore';
|
||||||
import io from 'socket.io-client';
|
import io from 'socket.io-client';
|
||||||
import _forEachKey from 'for-each-key';
|
import _forEachKey from 'for-each-key';
|
||||||
import log from './log.mjs';
|
import log from './log.mjs';
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ import path, {dirname} from 'node:path';
|
||||||
import {fileURLToPath} from 'node:url';
|
import {fileURLToPath} from 'node:url';
|
||||||
import process from 'node:process';
|
import process from 'node:process';
|
||||||
import fs from 'node:fs';
|
import fs from 'node:fs';
|
||||||
import fullstore from 'fullstore';
|
import {fullstore} from 'fullstore';
|
||||||
import * as nanomemoizeDefault from 'nano-memoize';
|
import * as nanomemoizeDefault from 'nano-memoize';
|
||||||
import readFilesSync from '@cloudcmd/read-files-sync';
|
import readFilesSync from '@cloudcmd/read-files-sync';
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue