8 Commits

Author SHA1 Message Date
a6720a0468 1.0.6 2020-10-05 10:58:20 +00:00
1e0616e580 fix(core): update 2020-10-05 10:58:20 +00:00
480c890b2a 1.0.5 2020-10-05 10:34:43 +00:00
877c9bb9b1 fix(core): update 2020-10-05 10:34:43 +00:00
e8f4c8fde4 1.0.4 2020-10-04 22:57:42 +00:00
0efeace113 fix(core): update 2020-10-04 22:57:42 +00:00
af44c47ba2 1.0.3 2020-10-04 10:24:08 +00:00
30136afc02 fix(core): update 2020-10-04 10:24:07 +00:00
4 changed files with 1732 additions and 1214 deletions

2932
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "@pushrocks/smartfile-interfaces",
"version": "1.0.2",
"version": "1.0.6",
"private": false,
"description": "an interface package for @pushrocks/smartfile",
"main": "dist_ts/index.js",
@@ -15,8 +15,8 @@
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7",
"@types/node": "^10.11.7",
"tslint": "^5.11.0",
"@types/node": "^14.11.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
"dependencies": {},

View File

@@ -2,7 +2,7 @@ import { expect, tap } from '@pushrocks/tapbundle';
import * as smartfileInterfaces from '../ts/index';
tap.test('first test', async () => {
console.log(smartfileInterfaces.standardExport);
console.log(smartfileInterfaces);
});
;
tap.start();

View File

@@ -1,3 +1,5 @@
import * as plugins from './smartfile-interfaces.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export interface VirtualDirTransferableObject {
bufferJsonData: any;
}