2020-04-13 13:49:04 +05:30
|
|
|
Use debian packaged node modules when available
|
|
|
|
- Exclude packaged modules from transpiling
|
|
|
|
- Remove webpack-bundle-analyzer
|
|
|
|
- Resolve .json files
|
2020-04-25 00:15:18 +05:30
|
|
|
- Add more plugins to babel.config.js
|
2020-12-07 17:52:42 +05:30
|
|
|
- Add mkdirp 1.0 and loader-utils 2.0 to ensure compatibility for packaged
|
|
|
|
modules (See #976310)
|
2020-12-24 20:32:23 +05:30
|
|
|
- Use link protocol for modules with permission issues (which has a bin: entry
|
2021-01-04 16:46:44 +05:30
|
|
|
in package.json) or dependencies. Use portal protocol only for modules that
|
|
|
|
1. does not have any other dependency and 2. does not have a bin: entry
|
2020-12-24 20:32:23 +05:30
|
|
|
See https://github.com/yarnpkg/berry/issues/2266
|
2021-01-04 16:46:44 +05:30
|
|
|
- Even better, portal protocol tries to satisfy even devDependencies so avoid
|
|
|
|
it
|
|
|
|
- Modules with problems compression-webpack-plugin, copy-webpack-plugin,
|
|
|
|
jszip, mkdirp, js-yaml, font-awesome, katex, cache-loader, webpack
|
2021-01-30 18:05:51 +05:30
|
|
|
- babel-loader, cache-loader needs loader-utils 1.x and we already have 2.x and
|
|
|
|
no compat patch
|
|
|
|
- brace-expansion is a major version ahead in the archive
|
|
|
|
- xterm build is broken (#980406)
|
2020-04-13 13:49:04 +05:30
|
|
|
|
2019-08-08 15:17:34 +05:30
|
|
|
--- a/config/webpack.config.js
|
|
|
|
+++ b/config/webpack.config.js
|
2020-02-23 17:54:41 +05:30
|
|
|
@@ -6,7 +6,6 @@
|
2019-08-08 15:17:34 +05:30
|
|
|
const StatsWriterPlugin = require('webpack-stats-plugin').StatsWriterPlugin;
|
|
|
|
const CompressionPlugin = require('compression-webpack-plugin');
|
2020-07-29 00:16:15 +05:30
|
|
|
const MonacoWebpackPlugin = require('./plugins/monaco_webpack');
|
2019-08-08 15:17:34 +05:30
|
|
|
-const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
2019-10-12 22:33:52 +05:30
|
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
2020-01-01 14:40:56 +05:30
|
|
|
const vendorDllHash = require('./helpers/vendor_dll_hash');
|
2019-08-08 15:17:34 +05:30
|
|
|
|
2021-02-22 22:40:45 +05:30
|
|
|
@@ -165,6 +164,8 @@
|
2020-12-09 23:02:53 +05:30
|
|
|
|
|
|
|
entry: generateEntries,
|
|
|
|
|
|
|
|
+ externals: [ 'canvas' ],
|
|
|
|
+
|
|
|
|
output: {
|
2021-02-22 22:40:45 +05:30
|
|
|
path: WEBPACK_OUTPUT_PATH,
|
|
|
|
publicPath: WEBPACK_PUBLIC_PATH,
|
|
|
|
@@ -174,13 +175,13 @@
|
2020-04-09 18:43:07 +05:30
|
|
|
},
|
2019-08-08 15:17:34 +05:30
|
|
|
|
|
|
|
resolve: {
|
2020-04-09 18:43:07 +05:30
|
|
|
- extensions: ['.js', '.gql', '.graphql'],
|
2019-08-08 15:17:34 +05:30
|
|
|
- modules: ['/usr/share/gitlab/node_modules','/usr/share/gitlab/node_modules/mermaid/node_modules', '/usr/lib/nodejs'],
|
2020-04-09 18:43:07 +05:30
|
|
|
+ extensions: ['.js', '.gql', '.graphql', '.json'],
|
2021-01-04 20:35:13 +05:30
|
|
|
+ modules: ['node_modules','/var/lib/gitlab/node_modules','/usr/share/gitlab/vendor/node_modules','/usr/share/gitlab/node_modules/mermaid/node_modules', '/usr/share/nodejs/markdown-it/node_modules/', '/usr/lib/nodejs', '/usr/share/nodejs'],
|
2019-08-08 15:17:34 +05:30
|
|
|
alias,
|
|
|
|
},
|
|
|
|
|
|
|
|
resolveLoader: {
|
|
|
|
- modules: ['/usr/share/gitlab/node_modules', '/usr/lib/nodejs'],
|
2021-01-04 20:35:13 +05:30
|
|
|
+ modules: ['node_modules','/var/lib/gitlab/node_modules', '/usr/lib/nodejs','/usr/share/nodejs'],
|
2019-08-08 15:17:34 +05:30
|
|
|
},
|
|
|
|
|
|
|
|
module: {
|
2021-02-22 22:40:45 +05:30
|
|
|
@@ -193,9 +194,13 @@
|
2020-03-28 19:53:26 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
2020-04-08 15:34:39 +05:30
|
|
|
- exclude: path =>
|
|
|
|
+ exclude: [ path =>
|
|
|
|
/node_modules\/(?!tributejs)|node_modules|vendor[\\/]assets/.test(path) &&
|
|
|
|
!/\.vue\.js/.test(path),
|
2020-04-11 19:51:50 +05:30
|
|
|
+ /\/usr\/share\/nodejs/,
|
|
|
|
+ /\/usr\/lib\/nodejs/,
|
|
|
|
+ /\/usr\/share\/javascript/
|
2020-04-08 15:34:39 +05:30
|
|
|
+ ],
|
2020-03-28 19:53:26 +05:30
|
|
|
loader: 'babel-loader',
|
|
|
|
options: {
|
|
|
|
cacheDirectory: path.join(CACHE_PATH, 'babel-loader'),
|
2021-02-22 22:40:45 +05:30
|
|
|
@@ -272,7 +277,7 @@
|
2021-01-30 18:05:51 +05:30
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(eot|ttf|woff|woff2)$/,
|
|
|
|
- include: /node_modules\/(katex\/dist\/fonts|monaco-editor)/,
|
|
|
|
+ include: /(node_modules\/monaco-editor|\/usr\/share\/fonts\/truetype\/katex)/,
|
|
|
|
loader: 'file-loader',
|
|
|
|
options: {
|
|
|
|
name: '[name].[contenthash:8].[ext]',
|
2021-02-22 22:40:45 +05:30
|
|
|
@@ -551,19 +556,6 @@
|
2019-08-08 15:17:34 +05:30
|
|
|
// enable HMR only in webpack-dev-server
|
|
|
|
DEV_SERVER_LIVERELOAD && new webpack.HotModuleReplacementPlugin(),
|
|
|
|
|
|
|
|
- // optionally generate webpack bundle analysis
|
|
|
|
- WEBPACK_REPORT &&
|
|
|
|
- new BundleAnalyzerPlugin({
|
|
|
|
- analyzerMode: 'static',
|
|
|
|
- generateStatsFile: true,
|
|
|
|
- openAnalyzer: false,
|
|
|
|
- reportFilename: path.join(ROOT_PATH, 'webpack-report/index.html'),
|
|
|
|
- statsFilename: path.join(ROOT_PATH, 'webpack-report/stats.json'),
|
2019-12-21 21:33:11 +05:30
|
|
|
- statsOptions: {
|
|
|
|
- source: false,
|
|
|
|
- },
|
2019-08-08 15:17:34 +05:30
|
|
|
- }),
|
|
|
|
-
|
|
|
|
new webpack.DefinePlugin({
|
2019-09-30 22:13:22 +05:30
|
|
|
// This one is used to define window.gon.ee and other things properly in tests:
|
2019-12-21 21:33:11 +05:30
|
|
|
'process.env.IS_EE': JSON.stringify(IS_EE),
|
2021-02-22 22:40:45 +05:30
|
|
|
@@ -598,6 +590,7 @@
|
2019-08-08 15:17:34 +05:30
|
|
|
|
2019-09-30 22:13:22 +05:30
|
|
|
node: {
|
|
|
|
fs: 'empty', // sqljs requires fs
|
|
|
|
+ Buffer: 'mock',
|
|
|
|
setImmediate: false,
|
|
|
|
},
|
2019-08-08 15:17:34 +05:30
|
|
|
};
|
2020-01-11 19:08:58 +05:30
|
|
|
--- a/package.json
|
|
|
|
+++ b/package.json
|
2021-02-22 22:40:45 +05:30
|
|
|
@@ -35,12 +35,12 @@
|
2020-04-25 00:15:18 +05:30
|
|
|
"webpack-prod": "NODE_OPTIONS=\"--max-old-space-size=3584\" NODE_ENV=production webpack --config config/webpack.config.js"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-06-23 00:43:41 +05:30
|
|
|
- "@babel/core": "^7.10.1",
|
|
|
|
- "@babel/plugin-proposal-class-properties": "^7.10.1",
|
|
|
|
- "@babel/plugin-proposal-json-strings": "^7.10.1",
|
|
|
|
- "@babel/plugin-proposal-private-methods": "^7.10.1",
|
|
|
|
- "@babel/plugin-syntax-import-meta": "^7.10.1",
|
|
|
|
- "@babel/preset-env": "^7.10.1",
|
2021-01-30 18:05:51 +05:30
|
|
|
+ "@babel/core": "link:/usr/share/nodejs/@babel/core",
|
|
|
|
+ "@babel/plugin-proposal-class-properties": "link:/usr/share/nodejs/@babel/plugin-proposal-class-properties",
|
|
|
|
+ "@babel/plugin-proposal-json-strings": "link:/usr/share/nodejs/@babel/plugin-proposal-json-strings",
|
|
|
|
+ "@babel/plugin-proposal-private-methods": "link:/usr/share/nodejs/@babel/plugin-proposal-private-methods",
|
|
|
|
+ "@babel/plugin-syntax-import-meta": "link:/usr/share/nodejs/@babel/plugin-syntax-import-meta",
|
|
|
|
+ "@babel/preset-env": "link:/usr/share/nodejs/@babel/preset-env",
|
2020-04-25 00:15:18 +05:30
|
|
|
"@gitlab/at.js": "1.5.5",
|
2021-02-22 22:40:45 +05:30
|
|
|
"@gitlab/svgs": "1.177.0",
|
|
|
|
"@gitlab/tributejs": "1.0.0",
|
2021-01-30 18:05:51 +05:30
|
|
|
@@ -56,29 +56,29 @@
|
2020-10-25 00:47:17 +05:30
|
|
|
"apollo-link": "^1.2.14",
|
|
|
|
"apollo-link-batch-http": "^1.2.14",
|
|
|
|
"apollo-upload-client": "^13.0.0",
|
2020-04-08 15:34:39 +05:30
|
|
|
- "autosize": "^4.0.2",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "autosize": "link:/usr/share/nodejs/autosize",
|
2020-04-08 15:34:39 +05:30
|
|
|
"aws-sdk": "^2.637.0",
|
2020-11-24 16:42:00 +05:30
|
|
|
- "axios": "^0.20.0",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "axios": "link:/usr/share/nodejs/axios",
|
2021-01-30 18:05:51 +05:30
|
|
|
"babel-loader": "^8.0.6",
|
2020-03-12 18:50:15 +05:30
|
|
|
"babel-plugin-lodash": "^3.3.4",
|
2020-06-23 00:43:41 +05:30
|
|
|
"bootstrap": "4.4.1",
|
2021-01-30 18:05:51 +05:30
|
|
|
"brace-expansion": "^1.1.8",
|
|
|
|
"cache-loader": "^4.1.0",
|
2020-02-23 17:54:41 +05:30
|
|
|
- "clipboard": "^1.7.1",
|
2020-07-03 14:39:25 +05:30
|
|
|
- "codemirror": "^5.48.4",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "clipboard": "link:/usr/share/nodejs/clipboard",
|
|
|
|
+ "codemirror": "link:/usr/share/nodejs/codemirror",
|
2020-04-08 15:34:39 +05:30
|
|
|
"codesandbox-api": "0.0.23",
|
2021-01-30 18:05:51 +05:30
|
|
|
"compression-webpack-plugin": "^3.0.1",
|
|
|
|
"copy-webpack-plugin": "^5.0.5",
|
2020-04-08 15:34:39 +05:30
|
|
|
- "core-js": "^3.6.4",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "core-js": "link:/usr/share/nodejs/core-js",
|
2020-10-25 00:47:17 +05:30
|
|
|
"cron-validator": "^1.1.1",
|
2020-01-11 19:08:58 +05:30
|
|
|
"cropper": "^2.3.0",
|
2021-01-30 18:05:51 +05:30
|
|
|
"css-loader": "^2.1.1",
|
2020-07-02 21:28:01 +05:30
|
|
|
- "d3": "^5.16.0",
|
|
|
|
- "d3-sankey": "^0.12.3",
|
2020-04-22 19:44:27 +05:30
|
|
|
- "d3-scale": "^2.2.2",
|
2020-01-11 19:08:58 +05:30
|
|
|
- "d3-selection": "^1.2.0",
|
|
|
|
- "dateformat": "^3.0.3",
|
2020-03-12 18:50:15 +05:30
|
|
|
- "deckar01-task_list": "^2.3.1",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "d3": "link:/usr/share/nodejs/d3",
|
|
|
|
+ "d3-sankey": "link:/usr/share/nodejs/d3-sankey",
|
|
|
|
+ "d3-scale": "link:/usr/share/nodejs/d3-scale",
|
|
|
|
+ "d3-selection": "link:/usr/share/nodejs/d3-selection",
|
|
|
|
+ "dateformat": "link:/usr/share/nodejs/dateformat",
|
|
|
|
+ "deckar01-task_list": "link:/usr/share/nodejs/deckar01-task_list",
|
2020-01-11 19:08:58 +05:30
|
|
|
"diff": "^3.4.0",
|
2020-04-08 15:34:39 +05:30
|
|
|
"document-register-element": "1.14.3",
|
2021-02-22 22:40:45 +05:30
|
|
|
"dompurify": "^2.2.4",
|
|
|
|
@@ -88,41 +88,41 @@
|
2020-01-11 19:08:58 +05:30
|
|
|
"emoji-unicode-version": "^0.2.1",
|
2021-01-30 18:05:51 +05:30
|
|
|
"exports-loader": "^0.7.0",
|
|
|
|
"file-loader": "^5.1.0",
|
2020-12-14 00:21:42 +05:30
|
|
|
- "font-awesome": "4.7.0",
|
2020-12-22 00:51:54 +05:30
|
|
|
+ "font-awesome": "link:/usr/share/nodejs/font-awesome",
|
2020-04-08 15:34:39 +05:30
|
|
|
"fuzzaldrin-plus": "^0.6.0",
|
2020-07-01 16:06:17 +05:30
|
|
|
- "glob": "^7.1.6",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "glob": "link:/usr/share/nodejs/glob",
|
2021-01-29 14:51:13 +05:30
|
|
|
"graphql": "^15.4.0",
|
|
|
|
"graphql-tag": "^2.11.0",
|
2020-11-24 16:42:00 +05:30
|
|
|
"immer": "^7.0.7",
|
2021-01-30 18:05:51 +05:30
|
|
|
"imports-loader": "^0.8.0",
|
2020-07-29 00:16:15 +05:30
|
|
|
"ipaddr.js": "^1.9.1",
|
2021-02-22 22:40:45 +05:30
|
|
|
- "jed": "^1.1.1",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "jed": "link:/usr/share/nodejs/jed",
|
2020-01-11 19:08:58 +05:30
|
|
|
"jest-transform-graphql": "^2.1.0",
|
2020-09-03 11:26:00 +05:30
|
|
|
- "jquery": "^3.5.0",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "jquery": "link:/usr/share/nodejs/jquery",
|
2020-01-11 19:08:58 +05:30
|
|
|
"jquery.caret": "^0.3.1",
|
2020-04-02 20:22:06 +05:30
|
|
|
"jquery.waitforimages": "^2.2.0",
|
2020-04-08 15:34:39 +05:30
|
|
|
- "js-cookie": "^2.2.1",
|
2020-12-11 16:49:44 +05:30
|
|
|
- "js-yaml": "^3.13.1",
|
2020-01-11 19:08:58 +05:30
|
|
|
- "jszip": "^3.1.3",
|
|
|
|
- "jszip-utils": "^0.0.2",
|
2020-12-11 15:51:21 +05:30
|
|
|
- "katex": "^0.10.0",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "js-cookie": "link:/usr/share/nodejs/js-cookie",
|
|
|
|
+ "js-yaml": "link:/usr/share/nodejs/js-yaml",
|
|
|
|
+ "jszip": "link:/usr/share/nodejs/jszip",
|
2021-01-30 18:05:51 +05:30
|
|
|
+ "jszip-utils": "link:/usr/share/nodejs/jszip",
|
2020-12-22 00:51:54 +05:30
|
|
|
+ "katex": "link:/usr/share/nodejs/katex",
|
2021-01-08 16:05:41 +05:30
|
|
|
"lodash": "^4.17.20",
|
2020-04-08 15:34:39 +05:30
|
|
|
"marked": "^0.3.12",
|
2020-12-11 02:57:36 +05:30
|
|
|
- "mermaid": "^8.5.2",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "mermaid": "link:/usr/share/nodejs/mermaid",
|
2020-06-23 00:43:41 +05:30
|
|
|
"mersenne-twister": "1.1.0",
|
2020-12-11 16:06:01 +05:30
|
|
|
- "minimatch": "^3.0.4",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "minimatch": "link:/usr/share/nodejs/minimatch",
|
2021-01-30 18:05:51 +05:30
|
|
|
"miragejs": "^0.1.40",
|
2021-02-22 22:40:45 +05:30
|
|
|
"mock-apollo-client": "^0.5.0",
|
2020-07-29 00:16:15 +05:30
|
|
|
"monaco-editor": "^0.20.0",
|
|
|
|
"monaco-editor-webpack-plugin": "^1.9.0",
|
2021-01-29 14:51:13 +05:30
|
|
|
"monaco-yaml": "^2.5.1",
|
2021-01-30 18:05:51 +05:30
|
|
|
"mousetrap": "1.6.5",
|
2020-12-07 01:51:00 +05:30
|
|
|
- "pdfjs-dist": "^2.0.943",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "pdfjs-dist": "link:/usr/share/nodejs/pdfjs-dist",
|
2020-01-11 19:09:17 +05:30
|
|
|
"pikaday": "^1.8.0",
|
2020-04-08 15:34:39 +05:30
|
|
|
- "popper.js": "^1.16.1",
|
2021-01-30 18:05:51 +05:30
|
|
|
+ "popper.js": "link:/usr/share/nodejs/popper.js",
|
|
|
|
"prismjs": "^1.21.0",
|
2020-09-06 14:11:18 +05:30
|
|
|
- "prosemirror-markdown": "^1.3.0",
|
2020-02-23 17:54:41 +05:30
|
|
|
- "prosemirror-model": "^1.6.4",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "prosemirror-markdown": "link:/usr/share/nodejs/prosemirror-markdown",
|
|
|
|
+ "prosemirror-model": "link:/usr/share/nodejs/prosemirror-model",
|
2020-02-23 17:54:41 +05:30
|
|
|
"raphael": "^2.2.7",
|
2021-01-30 18:05:51 +05:30
|
|
|
"raw-loader": "^4.0.0",
|
2020-10-25 00:47:17 +05:30
|
|
|
"select2": "3.5.2-browserify",
|
2021-02-22 22:40:45 +05:30
|
|
|
@@ -134,26 +134,25 @@
|
2021-01-30 18:05:51 +05:30
|
|
|
"style-loader": "^1.1.3",
|
2020-11-24 16:42:00 +05:30
|
|
|
"swagger-ui-dist": "^3.32.4",
|
2020-01-11 19:08:58 +05:30
|
|
|
"three": "^0.84.0",
|
|
|
|
- "three-orbit-controls": "^82.1.0",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "three-orbit-controls": "link:/usr/share/nodejs/three-orbit-controls",
|
2021-01-30 18:05:51 +05:30
|
|
|
"three-stl-loader": "^1.0.4",
|
|
|
|
- "timeago.js": "^4.0.2",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "timeago.js": "link:/usr/share/nodejs/timeago.js",
|
2020-01-11 19:08:58 +05:30
|
|
|
"tiptap": "^1.8.0",
|
|
|
|
"tiptap-commands": "^1.4.0",
|
|
|
|
"tiptap-extensions": "^1.8.0",
|
2021-01-30 18:05:51 +05:30
|
|
|
"url-loader": "^3.0.0",
|
2020-12-11 01:42:18 +05:30
|
|
|
- "uuid": "8.1.0",
|
2021-01-04 16:46:44 +05:30
|
|
|
+ "uuid": "link:/usr/share/nodejs/uuid",
|
2020-01-11 19:08:58 +05:30
|
|
|
"visibilityjs": "^1.2.4",
|
2021-01-04 16:46:44 +05:30
|
|
|
- "vue": "^2.6.12",
|
2020-12-22 00:51:54 +05:30
|
|
|
+ "vue": "link:/usr/share/nodejs/vue",
|
2020-05-24 23:50:06 +05:30
|
|
|
"vue-apollo": "^3.0.3",
|
2021-02-22 22:40:45 +05:30
|
|
|
"vue-loader": "^15.9.5",
|
|
|
|
"vue-router": "3.4.9",
|
2021-01-04 16:46:44 +05:30
|
|
|
- "vue-template-compiler": "^2.6.12",
|
2020-12-22 00:51:54 +05:30
|
|
|
+ "vue-template-compiler": "link:/usr/share/nodejs/vue-template-compiler",
|
2020-03-12 18:50:15 +05:30
|
|
|
"vue-virtual-scroll-list": "^1.4.4",
|
2020-01-11 19:08:58 +05:30
|
|
|
"vuedraggable": "^2.23.0",
|
2021-02-22 22:40:45 +05:30
|
|
|
"vuex": "^3.6.0",
|
2020-12-24 20:32:23 +05:30
|
|
|
"web-vitals": "^0.2.4",
|
2021-01-29 14:51:13 +05:30
|
|
|
"webpack": "^4.42.0",
|
2020-04-08 15:34:39 +05:30
|
|
|
- "webpack-bundle-analyzer": "^3.6.0",
|
2021-01-29 14:51:13 +05:30
|
|
|
"webpack-cli": "^3.3.11",
|
2021-01-30 18:05:51 +05:30
|
|
|
"webpack-stats-plugin": "^0.3.1",
|
|
|
|
"worker-loader": "^2.0.0",
|
2020-04-25 00:15:18 +05:30
|
|
|
--- a/babel.config.js
|
|
|
|
+++ b/babel.config.js
|
2020-10-25 00:47:17 +05:30
|
|
|
@@ -34,9 +34,12 @@
|
2020-04-25 00:15:18 +05:30
|
|
|
// include stage 3 proposals
|
|
|
|
const plugins = [
|
|
|
|
'@babel/plugin-syntax-import-meta',
|
|
|
|
+ '@babel/plugin-syntax-dynamic-import',
|
|
|
|
'@babel/plugin-proposal-class-properties',
|
|
|
|
'@babel/plugin-proposal-json-strings',
|
|
|
|
'@babel/plugin-proposal-private-methods',
|
|
|
|
+ '@babel/plugin-proposal-optional-chaining',
|
|
|
|
+ '@babel/plugin-proposal-nullish-coalescing-operator',
|
2020-10-25 00:47:17 +05:30
|
|
|
// See: https://gitlab.com/gitlab-org/gitlab/-/issues/229146
|
|
|
|
'@babel/plugin-transform-arrow-functions',
|
2020-04-25 00:15:18 +05:30
|
|
|
'lodash',
|
2020-12-07 01:51:00 +05:30
|
|
|
--- a/app/assets/javascripts/pdf/index.vue
|
|
|
|
+++ b/app/assets/javascripts/pdf/index.vue
|
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
<script>
|
|
|
|
import pdfjsLib from 'pdfjs-dist/build/pdf';
|
|
|
|
-import workerSrc from 'pdfjs-dist/build/pdf.worker.min';
|
|
|
|
+import workerSrc from 'pdfjs-dist/build/pdf.worker';
|
|
|
|
|
|
|
|
import page from './page/index.vue';
|
|
|
|
|