debian-mirror-gitlab/debian/patches/nodejs/0040-use-packaged-modules.patch

237 lines
8.5 KiB
Diff
Raw Normal View History

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
- Add mkdirp 1.0 and loader-utils 2.0 to ensure compatibility for packaged
modules (See #976310)
- Use link protocol for modules with permission issues (which has a bin: entry
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
See https://github.com/yarnpkg/berry/issues/2266
- 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
- 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
@@ -16,7 +16,6 @@
2021-04-17 20:43:06 +05:30
const VUE_VERSION = require('vue/package.json').version;
2021-10-01 04:34:20 +05:30
2021-04-17 20:43:06 +05:30
const webpack = require('webpack');
-const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const { StatsWriterPlugin } = require('webpack-stats-plugin');
const WEBPACK_VERSION = require('webpack/package.json').version;
2022-05-07 22:13:53 +05:30
@@ -237,6 +236,8 @@
entry: generateEntries,
+ externals: [ 'canvas' ],
+
output: {
2021-02-22 22:40:45 +05:30
path: WEBPACK_OUTPUT_PATH,
publicPath: WEBPACK_PUBLIC_PATH,
2022-05-07 22:13:53 +05:30
@@ -246,10 +247,15 @@
},
2019-08-08 15:17:34 +05:30
resolve: {
2021-06-09 22:52:32 +05:30
- extensions: ['.js'],
+ extensions: ['.js', '.gql', '.graphql', '.json'],
+ 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,
},
2021-06-09 22:52:32 +05:30
+ resolveLoader: {
+ modules: ['node_modules','/var/lib/gitlab/node_modules', '/usr/lib/nodejs','/usr/share/nodejs'],
2021-06-09 22:52:32 +05:30
+ },
+
2019-08-08 15:17:34 +05:30
module: {
2021-06-09 22:52:32 +05:30
strictExportPresence: true,
rules: [
2022-05-07 22:13:53 +05:30
@@ -348,7 +354,7 @@
},
{
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]',
2022-05-07 22:13:53 +05:30
@@ -659,19 +665,6 @@
2022-04-04 12:50:17 +05:30
},
},
2019-08-08 15:17:34 +05:30
- // 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({
// These are used to define window.gon.ee, window.gon.jh and other things properly in tests:
2019-12-21 21:33:11 +05:30
'process.env.IS_EE': JSON.stringify(IS_EE),
2022-05-07 22:13:53 +05:30
@@ -736,6 +729,7 @@
2019-08-08 15:17:34 +05:30
node: {
fs: 'empty', // sqljs requires fs
+ Buffer: 'mock',
setImmediate: false,
},
2019-08-08 15:17:34 +05:30
};
--- a/package.json
+++ b/package.json
2022-04-04 12:50:17 +05:30
@@ -48,18 +48,18 @@
2021-04-21 01:01:41 +05:30
},
"dependencies": {
2022-04-04 12:50:17 +05:30
"@apollo/client": "^3.3.11",
2021-04-21 01:01: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",
+ "@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",
"@gitlab/at.js": "1.5.7",
"@gitlab/favicon-overlay": "2.0.0",
2022-05-07 22:13:53 +05:30
"@gitlab/svgs": "2.6.0",
"@gitlab/ui": "37.3.0",
2021-05-10 01:10:00 +05:30
"@gitlab/visual-review-tools": "1.6.1",
2022-04-04 12:50:17 +05:30
- "@rails/actioncable": "6.1.4-6",
2021-05-10 01:10:00 +05:30
+ "@rails/actioncable": "link:/usr/share/nodejs/@rails/actioncable",
2022-04-04 12:50:17 +05:30
"@rails/ujs": "6.1.4-6",
"@sentry/browser": "5.30.0",
"@sourcegraph/code-host-integration": "0.0.60",
@@ -100,17 +100,17 @@
"aws-sdk": "^2.637.0",
2021-12-11 22:56:32 +05:30
"axios": "^0.24.0",
"babel-loader": "^8.2.2",
- "babel-plugin-lodash": "^3.3.4",
+ "babel-plugin-lodash": "link:/usr/share/nodejs/babel-plugin-lodash",
2021-06-09 22:52:32 +05:30
"bootstrap": "4.5.3",
"cache-loader": "^4.1.0",
2021-12-11 22:56:32 +05:30
"canvas-confetti": "^1.4.0",
- "clipboard": "^2.0.8",
- "codemirror": "^5.48.4",
+ "clipboard": "link:/usr/share/nodejs/clipboard",
+ "codemirror": "link:/usr/share/nodejs/codemirror",
"codesandbox-api": "0.0.23",
"compression-webpack-plugin": "^5.0.2",
"copy-webpack-plugin": "^6.4.1",
"core-js": "^3.21.1",
- "cron-validator": "^1.1.1",
+ "cron-validator": "link:/usr/share/nodejs/cron-validator",
"cronstrue": "^1.122.0",
"cropper": "^2.3.0",
"css-loader": "^2.1.1",
2022-04-04 12:50:17 +05:30
@@ -135,31 +135,31 @@
"jed": "^1.1.1",
2021-09-04 02:51:02 +05:30
"jquery": "^3.6.0",
"jquery.caret": "^0.3.1",
2020-04-08 15:34:39 +05:30
- "js-cookie": "^2.2.1",
- "js-yaml": "^3.13.1",
2022-03-03 21:49:46 +05:30
+ "js-cookie": "link:/usr/share/nodejs/js-cookie",
+ "js-yaml": "link:/usr/share/nodejs/js-yaml",
"jszip": "^3.1.3",
- "jszip-utils": "^0.0.2",
2021-06-12 00:45:14 +05:30
- "katex": "^0.13.2",
- "lodash": "^4.17.20",
2022-03-03 21:49:46 +05:30
+ "jszip-utils": "link:/usr/share/nodejs/jszip-utils",
2021-06-12 00:45:14 +05:30
+ "katex": "link:/usr/share/nodejs/katex",
+ "lodash": "link:/usr/share/nodejs/lodash",
2022-05-07 22:13:53 +05:30
"lowlight": "^2.5.0",
2020-04-08 15:34:39 +05:30
"marked": "^0.3.12",
2021-03-08 22:12:33 +05:30
"mathjax": "3",
2022-02-05 19:34:21 +05:30
"mermaid": "^8.13.10",
2021-04-30 00:10:56 +05:30
- "minimatch": "^3.0.4",
+ "minimatch": "link:/usr/share/nodejs/minimatch",
2021-10-28 01:36:19 +05:30
"monaco-editor": "^0.25.2",
2021-10-01 04:34:20 +05:30
"monaco-editor-webpack-plugin": "^4.0.0",
2021-01-29 14:51:13 +05:30
"monaco-yaml": "^2.5.1",
"mousetrap": "1.6.5",
2021-10-01 04:34:20 +05:30
"papaparse": "^5.3.1",
- "pdfjs-dist": "^2.0.943",
+ "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",
+ "popper.js": "link:/usr/share/nodejs/popper.js",
2021-06-09 22:52:32 +05:30
"portal-vue": "^2.1.7",
2022-04-04 12:50:17 +05:30
"postcss": "8.4.5",
"prismjs": "^1.21.0",
2022-05-07 22:13:53 +05:30
- "prosemirror-markdown": "1.7.1",
- "prosemirror-model": "^1.16.1",
- "prosemirror-state": "^1.3.4",
+ "prosemirror-markdown": "link:/usr/share/nodejs/prosemirror-markdown",
+ "prosemirror-model": "link:/usr/share/nodejs/prosemirror-model",
+ "prosemirror-state": "link:/usr/share/nodejs/prosemirror-state",
"prosemirror-tables": "^1.1.1",
2022-05-07 22:13:53 +05:30
"prosemirror-view": "^1.23.7",
2020-02-23 17:54:41 +05:30
"raphael": "^2.2.7",
2022-05-07 22:13:53 +05:30
@@ -173,25 +173,24 @@
2021-06-09 22:52:32 +05:30
"style-loader": "^2.0.0",
2022-04-01 22:11:57 +05:30
"swagger-ui-dist": "4.8.0",
"three": "^0.84.0",
- "three-orbit-controls": "^82.1.0",
+ "three-orbit-controls": "link:/usr/share/nodejs/three-orbit-controls",
"three-stl-loader": "^1.0.4",
2022-05-07 22:13:53 +05:30
- "timeago.js": "^4.0.2",
+ "timeago.js": "link:/usr/share/nodejs/timeago.js",
2021-04-30 00:10:56 +05:30
"url-loader": "^4.1.1",
- "uuid": "8.1.0",
+ "uuid": "link:/usr/share/nodejs/uuid",
"visibilityjs": "^1.2.4",
- "vue": "^2.6.12",
+ "vue": "link:/usr/share/nodejs/vue",
2022-04-04 12:50:17 +05:30
"vue-apollo": "^3.0.7",
2021-03-08 22:12:33 +05:30
"vue-loader": "^15.9.6",
2021-06-09 22:52:32 +05:30
"vue-observe-visibility": "^1.0.0",
"vue-resize": "^1.0.1",
2021-02-22 22:40:45 +05:30
"vue-router": "3.4.9",
- "vue-template-compiler": "^2.6.12",
+ "vue-template-compiler": "link:/usr/share/nodejs/vue-template-compiler",
2021-04-30 00:10:56 +05:30
"vue-virtual-scroll-list": "^1.4.7",
"vuedraggable": "^2.23.0",
2021-02-22 22:40:45 +05:30
"vuex": "^3.6.0",
"web-vitals": "^0.2.4",
2021-03-11 21:09:22 +05:30
"webpack": "^4.46.0",
2021-06-09 22:52:32 +05:30
- "webpack-bundle-analyzer": "^4.4.2",
2022-04-04 12:50:17 +05:30
"webpack-cli": "^4.9.2",
"webpack-stats-plugin": "^0.3.1",
"worker-loader": "^2.0.0",
--- a/babel.config.js
+++ b/babel.config.js
@@ -14,6 +14,7 @@
// 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',
--- 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';