We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@existdb/gulp-exist
1 parent 208fc04 commit 1910c39Copy full SHA for 1910c39
1 file changed
gulpfile.js
@@ -2,7 +2,7 @@ import gulp from 'gulp';
2
import zip from 'gulp-zip';
3
import replace from 'gulp-replace';
4
import newer from 'gulp-newer';
5
-import exist from '@existdb/gulp-exist';
+import { createClient } from '@existdb/gulp-exist';
6
import dateformat from 'dateformat';
7
import fs from 'fs';
8
import { readFileSync } from 'fs';
@@ -12,7 +12,7 @@ import { exec } from 'child_process';
12
13
const packageJson = JSON.parse(readFileSync('./package.json', 'utf8'));
14
const existConfig = JSON.parse(readFileSync('./existConfig.json', 'utf8'));
15
-const existClient = exist.createClient(existConfig);
+const existClient = createClient(existConfig);
16
17
18
//handles xqueries
0 commit comments