fix(core): update

This commit is contained in:
2020-02-25 19:02:52 +00:00
parent 385285d897
commit 7d240b3461
5 changed files with 32 additions and 5 deletions

View File

@ -1,3 +1,14 @@
import * as plugins from './smartmatch.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export class SmartMatch {
private picomatch;
public globString;
constructor(globStringArg: string) {
this.globString = globStringArg;
this.picomatch = plugins.picomatch(this.globString);
}
public match(matchStringArg): boolean {
return this.picomatch(matchStringArg);
}
}

View File

@ -1,2 +1,6 @@
const removeme = {};
export { removeme };
// third party scope
import picomatch from 'picomatch';
export {
picomatch
}