0.0.10 swap to using uci-utils/class-merge instead of aggreagation which has the symbol property fix

master
David Kebler 2020-02-20 22:50:08 -08:00
parent 08ed72224c
commit 281b31ecb5
4 changed files with 8 additions and 7 deletions

View File

@ -1,4 +1,4 @@
import Sync from '@uci-utils/sync'
import Sync from '../src/sync'
import onDeath from 'ondeath'
(async () => {
@ -6,8 +6,8 @@ import onDeath from 'ondeath'
await sync.runJob('remote')
// await sync.loadJob('local')
sync.watch('on')
console.log('ready and waiting')
// sync.watch('on')
// console.log('ready and waiting')
onDeath( () => {
console.log('\nHe\'s dead Jim')

View File

@ -0,0 +1 @@
// this is a js file sent via the sync package

View File

@ -1,6 +1,6 @@
{
"name": "@uci-utils/sync",
"version": "0.0.9",
"version": "0.0.10",
"description": "module to copy, maintain, and launch hardware modules on other machines",
"main": "src/index.js",
"bin": {
@ -31,10 +31,10 @@
},
"homepage": "https://github.com/uCOMmandIt/uci-remote-code#readme",
"dependencies": {
"@uci-utils/logger": "^0.0.15",
"@uci-utils/class-merge": "^1.0.3",
"@uci-utils/logger": "^0.0.16",
"@uci-utils/read-lines": "^0.2.2",
"@uci-utils/watcher": "^0.2.4",
"aggregation": "^1.2.5",
"await-to-js": "^2.1.1",
"conf": "^5.0.0",
"debounce-fn": "^3.0.1",

View File

@ -4,7 +4,7 @@ import Rsync from './rsync'
import { EventEmitter as Emitter } from 'events'
import { dirname, normalize } from 'path'
// third party elements
import merge from 'aggregation/es6'
import merge from '@uci-utils/class-merge'
import { readFile } from 'fs-read-data'
import Conf from 'conf'
import debounce from 'debounce-fn'