Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e608a1fa
Commit
e608a1fa
authored
May 14, 2021
by
Mark Florian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ESLint import/order violations
parent
d78fd9c4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
config/helpers/vendor_dll_hash.js
config/helpers/vendor_dll_hash.js
+1
-1
config/karma.config.js
config/karma.config.js
+1
-1
config/webpack.config.js
config/webpack.config.js
+1
-1
scripts/frontend/check_page_bundle_mixins_css_for_sideeffects.js
.../frontend/check_page_bundle_mixins_css_for_sideeffects.js
+1
-1
scripts/frontend/merge_coverage_frontend.js
scripts/frontend/merge_coverage_frontend.js
+1
-1
No files found.
config/helpers/vendor_dll_hash.js
View file @
e608a1fa
const
fs
=
require
(
'
fs
'
);
const
crypto
=
require
(
'
crypto
'
);
const
fs
=
require
(
'
fs
'
);
const
path
=
require
(
'
path
'
);
const
CACHE_PATHS
=
[
...
...
config/karma.config.js
View file @
e608a1fa
/* eslint-disable no-inner-declarations, no-param-reassign */
const
path
=
require
(
'
path
'
);
const
chalk
=
require
(
'
chalk
'
);
const
argumentsParser
=
require
(
'
commander
'
);
const
glob
=
require
(
'
glob
'
);
const
path
=
require
(
'
path
'
);
const
webpack
=
require
(
'
webpack
'
);
const
IS_EE
=
require
(
'
./helpers/is_ee_env
'
);
const
webpackConfig
=
require
(
'
./webpack.config.js
'
);
...
...
config/webpack.config.js
View file @
e608a1fa
const
fs
=
require
(
'
fs
'
);
const
path
=
require
(
'
path
'
);
const
SOURCEGRAPH_VERSION
=
require
(
'
@sourcegraph/code-host-integration/package.json
'
).
version
;
const
CompressionPlugin
=
require
(
'
compression-webpack-plugin
'
);
const
CopyWebpackPlugin
=
require
(
'
copy-webpack-plugin
'
);
const
glob
=
require
(
'
glob
'
);
const
path
=
require
(
'
path
'
);
const
VueLoaderPlugin
=
require
(
'
vue-loader/lib/plugin
'
);
const
VUE_LOADER_VERSION
=
require
(
'
vue-loader/package.json
'
).
version
;
const
VUE_VERSION
=
require
(
'
vue/package.json
'
).
version
;
...
...
scripts/frontend/check_page_bundle_mixins_css_for_sideeffects.js
View file @
e608a1fa
...
...
@@ -8,8 +8,8 @@ if (process.env.RAILS_ENV !== 'production') {
}
const
fs
=
require
(
'
fs
'
);
const
glob
=
require
(
'
glob
'
);
const
path
=
require
(
'
path
'
);
const
glob
=
require
(
'
glob
'
);
const
pjs
=
require
(
'
postcss
'
);
const
paths
=
glob
.
sync
(
'
public/assets/page_bundles/_mixins_and_variables_and_functions*.css
'
,
{
...
...
scripts/frontend/merge_coverage_frontend.js
View file @
e608a1fa
const
{
resolve
}
=
require
(
'
path
'
);
const
{
sync
}
=
require
(
'
glob
'
);
const
{
createCoverageMap
}
=
require
(
'
istanbul-lib-coverage
'
);
const
{
createContext
}
=
require
(
'
istanbul-lib-report
'
);
const
{
create
}
=
require
(
'
istanbul-reports
'
);
const
{
resolve
}
=
require
(
'
path
'
);
const
coverageMap
=
createCoverageMap
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment