Skip to content

Commit 1910c39

Browse files
committed
update import syntax for @existdb/gulp-exist
1 parent 208fc04 commit 1910c39

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import gulp from 'gulp';
22
import zip from 'gulp-zip';
33
import replace from 'gulp-replace';
44
import newer from 'gulp-newer';
5-
import exist from '@existdb/gulp-exist';
5+
import { createClient } from '@existdb/gulp-exist';
66
import dateformat from 'dateformat';
77
import fs from 'fs';
88
import { readFileSync } from 'fs';
@@ -12,7 +12,7 @@ import { exec } from 'child_process';
1212

1313
const packageJson = JSON.parse(readFileSync('./package.json', 'utf8'));
1414
const existConfig = JSON.parse(readFileSync('./existConfig.json', 'utf8'));
15-
const existClient = exist.createClient(existConfig);
15+
const existClient = createClient(existConfig);
1616

1717

1818
//handles xqueries

0 commit comments

Comments
 (0)