Skip to content

Commit

Permalink
Merge branch 'maintenance-3.0.x' into fix-WEBUI-1159-update-catalog-v…
Browse files Browse the repository at this point in the history
…ersion-check-30x
  • Loading branch information
rakeshkumar1019 authored Jul 31, 2023
2 parents 778f4ad + 8373c5c commit 5956537
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/nuxeo-designer-catalog/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ limitations under the License.
*/

// Include Gulp & tools we'll use
const path = require('path');
const { spawn } = require('child_process');
const gulp = require('gulp');
const gutil = require('gulp-util');
const git = require('gulp-git');
const del = require('del');
const { spawn } = require('child_process');
const runSequence = require('gulp4-run-sequence');
const merge = require('merge-stream');
const path = require('path');
const bower = require('gulp-bower');
const fs = require('fs-extra');
const stream = require('./src/utils/stream').obj;
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxeo-designer-catalog/src/elements.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const path = require('path');
const fs = require('fs-extra');
const gutil = require('gulp-util');
const path = require('path');

const _ = require('lodash');
const async = require('async');
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxeo-designer-catalog/src/utils/analyze.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
const path = require('path');
const _ = require('lodash');
const fs = require('fs-extra');
const path = require('path');
const { Analyzer, FsUrlLoader, PackageUrlResolver, generateAnalysis, Analysis } = require('polymer-analyzer');

module.exports = (pkg, sourcePaths, libraries, pkgManagement, callback) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { After, Status } from '@cucumber/cucumber';

import * as path from 'path';
import * as mkdirp from 'mkdirp';
import { After, Status } from '@cucumber/cucumber';

After(function(scenario) {
const { status } = scenario.result;
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxeo-web-ui-ftest/scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
const fs = require('fs');
const path = require('path');
const { spawn } = require('child_process');
const chromeLauncher = require('chrome-launcher');
const { execSync } = require('child_process');
const chromeLauncher = require('chrome-launcher');
const fetch = require('node-fetch');

const wdioBin = require.resolve('@wdio/cli/bin/wdio');
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxeo-web-ui-ftest/wdio.conf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const chai = require('chai');
const path = require('path');
const chai = require('chai');
const htmlReporter = require('multiple-cucumber-html-reporter');

const CompatService = require('./wdio-compat-plugin');
Expand Down
4 changes: 2 additions & 2 deletions scripts/merge-messages.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const glob = require('glob');
const { mkdirSync, existsSync, writeFileSync } = require('fs');
const path = require('path');
const { mkdirSync, existsSync, writeFileSync } = require('fs');
const glob = require('glob');

const DEST = '.tmp/i18n';
const CWD = process.cwd();
Expand Down

0 comments on commit 5956537

Please sign in to comment.