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

205 lines
7 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
2022-10-18 15:59:10 +05:30
@@ -17,7 +17,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-10-18 15:59:10 +05:30
@@ -257,6 +256,8 @@
entry: generateEntries,
+ externals: [ 'canvas' ],
+
output: {
2021-02-22 22:40:45 +05:30
path: WEBPACK_OUTPUT_PATH,
publicPath: WEBPACK_PUBLIC_PATH,
2022-10-18 15:59:10 +05:30
@@ -268,10 +269,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-10-18 15:59:10 +05:30
@@ -370,7 +376,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-10-18 15:59:10 +05:30
@@ -773,6 +779,7 @@
2019-08-08 15:17:34 +05:30
node: {
2022-06-22 00:40:03 +05:30
fs: 'empty', // editorconfig requires 'fs'
+ Buffer: 'mock',
setImmediate: false,
},
2019-08-08 15:17:34 +05:30
};
2022-06-22 00:40:03 +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';
2022-10-18 15:59:10 +05:30
import Page from './page/index.vue';
2022-06-22 00:40:03 +05:30
--- a/package.json
+++ b/package.json
2022-10-18 15:59:10 +05:30
@@ -47,8 +47,8 @@
2021-04-21 01:01:41 +05:30
"dependencies": {
2022-08-27 14:03:50 +05:30
"@_ueberdosis/prosemirror-tables": "^1.1.3",
2022-06-22 00:40:03 +05:30
"@apollo/client": "^3.5.10",
2022-07-29 18:21:45 +05:30
- "@babel/core": "^7.18.5",
- "@babel/preset-env": "^7.18.2",
2021-04-21 01:01:41 +05:30
+ "@babel/core": "link:/usr/share/nodejs/@babel/core",
+ "@babel/preset-env": "link:/usr/share/nodejs/@babel/preset-env",
2022-09-04 06:12:58 +05:30
"@codesandbox/sandpack-client": "^1.2.2",
2021-04-21 01:01:41 +05:30
"@gitlab/at.js": "1.5.7",
"@gitlab/favicon-overlay": "2.0.0",
2022-10-18 15:59:10 +05:30
@@ -56,7 +56,7 @@
"@gitlab/ui": "43.16.0",
2022-07-16 23:52:05 +05:30
"@gitlab/visual-review-tools": "1.7.3",
2022-10-18 15:59:10 +05:30
"@gitlab/web-ide": "0.0.1-dev-20220815034418",
2022-06-22 00:40:03 +05:30
- "@rails/actioncable": "6.1.4-7",
2021-05-10 01:10:00 +05:30
+ "@rails/actioncable": "link:/usr/share/nodejs/@rails/actioncable",
2022-06-22 00:40:03 +05:30
"@rails/ujs": "6.1.4-7",
"@sentry/browser": "5.30.0",
"@sourcegraph/code-host-integration": "0.0.60",
2022-10-18 15:59:10 +05:30
@@ -95,23 +95,23 @@
2022-08-27 14:03:50 +05:30
"autosize": "^5.0.1",
2021-12-11 22:56:32 +05:30
"axios": "^0.24.0",
2022-07-16 23:52:05 +05:30
"babel-loader": "^8.2.5",
- "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",
+ "clipboard": "link:/usr/share/nodejs/clipboard",
"codesandbox-api": "0.0.23",
"compression-webpack-plugin": "^5.0.2",
"copy-webpack-plugin": "^6.4.1",
2022-10-18 15:59:10 +05:30
"core-js": "^3.25.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",
- "d3": "^5.16.0",
- "d3-sankey": "^0.12.3",
- "d3-selection": "^1.2.0",
- "dateformat": "^5.0.1",
+ "d3": "link:/usr/share/nodejs/d3",
+ "d3-sankey": "link:/usr/share/nodejs/d3-sankey",
+ "d3-selection": "link:/usr/share/nodejs/d3-selection",
+ "dateformat": "link:/usr/share/nodejs/dateformat",
"deckar01-task_list": "^2.3.1",
"diff": "^3.4.0",
2022-10-18 15:59:10 +05:30
"dompurify": "^2.4.0",
@@ -129,29 +129,29 @@
"jed": "^1.1.1",
2021-09-04 02:51:02 +05:30
"jquery": "^3.6.0",
"jquery.caret": "^0.3.1",
2022-07-16 23:52:05 +05:30
- "js-cookie": "^3.0.0",
- "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",
2021-06-12 00:45:14 +05:30
- "katex": "^0.13.2",
- "lodash": "^4.17.20",
+ "katex": "link:/usr/share/nodejs/katex",
+ "lodash": "link:/usr/share/nodejs/lodash",
2022-08-13 16:00:24 +05:30
"lowlight": "^2.6.1",
2022-08-27 14:03:50 +05:30
"marked": "^4.0.18",
2021-03-08 22:12:33 +05:30
"mathjax": "3",
2022-08-27 14:03:50 +05:30
"mdurl": "^1.0.1",
"mermaid": "^9.1.3",
2022-08-13 16:00:24 +05:30
"micromatch": "^4.0.5",
2021-04-30 00:10:56 +05:30
- "minimatch": "^3.0.4",
+ "minimatch": "link:/usr/share/nodejs/minimatch",
2022-08-27 14:03:50 +05:30
"monaco-editor": "^0.30.1",
"monaco-editor-webpack-plugin": "^6.0.0",
"monaco-yaml": "3.0.0",
"mousetrap": "1.6.5",
2021-10-01 04:34:20 +05:30
"papaparse": "^5.3.1",
2022-07-29 18:21:45 +05:30
"patch-package": "^6.4.7",
- "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-08-13 16:00:24 +05:30
- "postcss": "8.4.14",
+ "postcss": "link:/usr/share/nodejs/postcss",
2022-08-27 14:03:50 +05:30
"prosemirror-markdown": "1.9.1",
"prosemirror-model": "^1.18.1",
2022-10-18 15:59:10 +05:30
"prosemirror-state": "^1.4.1",
@@ -170,26 +170,25 @@
2021-06-09 22:52:32 +05:30
"style-loader": "^2.0.0",
2022-08-13 16:00:24 +05:30
"swagger-ui-dist": "4.12.0",
2022-10-18 15:59:10 +05:30
"three": "^0.143.0",
2022-05-07 22:13:53 +05:30
- "timeago.js": "^4.0.2",
+ "timeago.js": "link:/usr/share/nodejs/timeago.js",
2022-06-22 00:40:03 +05:30
"unified": "^10.1.2",
2022-10-18 15:59:10 +05:30
"unist-builder": "^3.0.0",
2022-07-16 23:52:05 +05:30
"unist-util-visit-parents": "^5.1.0",
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",
2022-10-18 15:59:10 +05:30
- "vue": "2.6.14",
+ "vue": "link:/usr/share/nodejs/vue",
2022-04-04 12:50:17 +05:30
"vue-apollo": "^3.0.7",
2022-10-18 15:59:10 +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",
2022-10-18 15:59:10 +05:30
- "vue-template-compiler": "2.6.14",
+ "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",
2022-10-18 15:59:10 +05:30
"vuex": "^3.6.2",
"web-vitals": "^0.2.4",
2021-03-11 21:09:22 +05:30
"webpack": "^4.46.0",
2022-10-18 15:59:10 +05:30
- "webpack-bundle-analyzer": "^4.6.1",
2022-07-29 18:21:45 +05:30
"webpack-cli": "^4.10.0",
"webpack-stats-plugin": "^0.3.1",
"worker-loader": "^2.0.0",