mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 13:13:33 +00:00
nodePackages.webpack-dev-server: drop
This commit is contained in:
parent
2e0d114024
commit
4b641f48a4
@ -46,6 +46,8 @@
|
||||
|
||||
- `nodePackages.insect` has been removed, as it's deprecated by upstream. The suggested replacement is `numbat`.
|
||||
|
||||
- `nodePackages.webpack-dev-server` has been removed, as it should be installed in projects that use it instead.
|
||||
|
||||
- The behavior of the `networking.nat.externalIP` and `networking.nat.externalIPv6` options has been changed. `networking.nat.forwardPorts` now only forwards packets destined for the specified IP addresses.
|
||||
|
||||
- `nodePackages.meshcommander` has been removed, as the package was deprecated by Intel.
|
||||
|
@ -215,6 +215,7 @@ mapAliases {
|
||||
vue-cli = throw "vue-cli has been removed since upstream no longer recommends using it; consider using create-vue and the new Vite-based tooling instead."; # added 2024-07-12
|
||||
inherit (pkgs) web-ext; # added 2023-08-20
|
||||
inherit (pkgs) webpack-cli; # added 2024-12-03
|
||||
webpack-dev-server = throw "webpack-dev-server has been removed. You should install it in your JS project instead."; # added 2024-12-05
|
||||
inherit (pkgs) wrangler; # added 2024-07-01
|
||||
inherit (pkgs) write-good; # added 2023-08-20
|
||||
inherit (pkgs) yalc; # added 2024-06-29
|
||||
|
@ -223,7 +223,6 @@
|
||||
, "vscode-json-languageserver"
|
||||
, "wavedrom-cli"
|
||||
, "webpack"
|
||||
, "webpack-dev-server"
|
||||
, "copy-webpack-plugin"
|
||||
, "webtorrent-cli"
|
||||
, "wring"
|
||||
|
354
pkgs/development/node-packages/node-packages.nix
generated
354
pkgs/development/node-packages/node-packages.nix
generated
@ -6466,33 +6466,6 @@ let
|
||||
sha512 = "14OGYM3DjEBjUOUaih+bwPgkhFnR8L9TSNSM0oE0L0hjWscTapvClqOgMDJ1ID52qkROCAgKl1d71Vmm4v0Buw==";
|
||||
};
|
||||
};
|
||||
"@jsonjoy.com/base64-1.1.2" = {
|
||||
name = "_at_jsonjoy.com_slash_base64";
|
||||
packageName = "@jsonjoy.com/base64";
|
||||
version = "1.1.2";
|
||||
src = fetchurl {
|
||||
url = "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz";
|
||||
sha512 = "q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==";
|
||||
};
|
||||
};
|
||||
"@jsonjoy.com/json-pack-1.1.0" = {
|
||||
name = "_at_jsonjoy.com_slash_json-pack";
|
||||
packageName = "@jsonjoy.com/json-pack";
|
||||
version = "1.1.0";
|
||||
src = fetchurl {
|
||||
url = "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.0.tgz";
|
||||
sha512 = "zlQONA+msXPPwHWZMKFVS78ewFczIll5lXiVPwFPCZUsrOKdxc2AvxU1HoNBmMRhqDZUR9HkC3UOm+6pME6Xsg==";
|
||||
};
|
||||
};
|
||||
"@jsonjoy.com/util-1.3.0" = {
|
||||
name = "_at_jsonjoy.com_slash_util";
|
||||
packageName = "@jsonjoy.com/util";
|
||||
version = "1.3.0";
|
||||
src = fetchurl {
|
||||
url = "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.3.0.tgz";
|
||||
sha512 = "Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==";
|
||||
};
|
||||
};
|
||||
"@kamilkisiela/fast-url-parser-1.1.4" = {
|
||||
name = "_at_kamilkisiela_slash_fast-url-parser";
|
||||
packageName = "@kamilkisiela/fast-url-parser";
|
||||
@ -82478,333 +82451,6 @@ in
|
||||
bypassCache = true;
|
||||
reconstructLock = true;
|
||||
};
|
||||
webpack-dev-server = nodeEnv.buildNodePackage {
|
||||
name = "webpack-dev-server";
|
||||
packageName = "webpack-dev-server";
|
||||
version = "5.1.0";
|
||||
src = fetchurl {
|
||||
url = "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.1.0.tgz";
|
||||
sha512 = "aQpaN81X6tXie1FoOB7xlMfCsN19pSvRAeYUHOdFWOlhpQ/LlbfTqYwwmEDFV0h8GGuqmCmKmT+pxcUV/Nt2gQ==";
|
||||
};
|
||||
dependencies = [
|
||||
sources."@jridgewell/gen-mapping-0.3.5"
|
||||
sources."@jridgewell/resolve-uri-3.1.2"
|
||||
sources."@jridgewell/set-array-1.2.1"
|
||||
sources."@jridgewell/source-map-0.3.6"
|
||||
sources."@jridgewell/sourcemap-codec-1.5.0"
|
||||
sources."@jridgewell/trace-mapping-0.3.25"
|
||||
sources."@jsonjoy.com/base64-1.1.2"
|
||||
sources."@jsonjoy.com/json-pack-1.1.0"
|
||||
sources."@jsonjoy.com/util-1.3.0"
|
||||
sources."@leichtgewicht/ip-codec-2.0.5"
|
||||
sources."@types/body-parser-1.19.5"
|
||||
sources."@types/bonjour-3.5.13"
|
||||
sources."@types/connect-3.4.38"
|
||||
sources."@types/connect-history-api-fallback-1.5.4"
|
||||
sources."@types/estree-1.0.6"
|
||||
sources."@types/express-4.17.21"
|
||||
sources."@types/express-serve-static-core-4.19.5"
|
||||
sources."@types/http-errors-2.0.4"
|
||||
sources."@types/http-proxy-1.17.15"
|
||||
sources."@types/json-schema-7.0.15"
|
||||
sources."@types/mime-1.3.5"
|
||||
sources."@types/node-22.5.5"
|
||||
sources."@types/node-forge-1.3.11"
|
||||
sources."@types/qs-6.9.16"
|
||||
sources."@types/range-parser-1.2.7"
|
||||
sources."@types/retry-0.12.2"
|
||||
sources."@types/send-0.17.4"
|
||||
sources."@types/serve-index-1.9.4"
|
||||
sources."@types/serve-static-1.15.7"
|
||||
sources."@types/sockjs-0.3.36"
|
||||
sources."@types/ws-8.5.12"
|
||||
sources."@webassemblyjs/ast-1.12.1"
|
||||
sources."@webassemblyjs/floating-point-hex-parser-1.11.6"
|
||||
sources."@webassemblyjs/helper-api-error-1.11.6"
|
||||
sources."@webassemblyjs/helper-buffer-1.12.1"
|
||||
sources."@webassemblyjs/helper-numbers-1.11.6"
|
||||
sources."@webassemblyjs/helper-wasm-bytecode-1.11.6"
|
||||
sources."@webassemblyjs/helper-wasm-section-1.12.1"
|
||||
sources."@webassemblyjs/ieee754-1.11.6"
|
||||
sources."@webassemblyjs/leb128-1.11.6"
|
||||
sources."@webassemblyjs/utf8-1.11.6"
|
||||
sources."@webassemblyjs/wasm-edit-1.12.1"
|
||||
sources."@webassemblyjs/wasm-gen-1.12.1"
|
||||
sources."@webassemblyjs/wasm-opt-1.12.1"
|
||||
sources."@webassemblyjs/wasm-parser-1.12.1"
|
||||
sources."@webassemblyjs/wast-printer-1.12.1"
|
||||
sources."@xtuc/ieee754-1.2.0"
|
||||
sources."@xtuc/long-4.2.2"
|
||||
sources."accepts-1.3.8"
|
||||
sources."acorn-8.12.1"
|
||||
sources."acorn-import-attributes-1.9.5"
|
||||
sources."ajv-8.17.1"
|
||||
sources."ajv-formats-2.1.1"
|
||||
sources."ajv-keywords-5.1.0"
|
||||
sources."ansi-html-community-0.0.8"
|
||||
sources."anymatch-3.1.3"
|
||||
sources."array-flatten-1.1.1"
|
||||
sources."batch-0.6.1"
|
||||
sources."binary-extensions-2.3.0"
|
||||
(sources."body-parser-1.20.3" // {
|
||||
dependencies = [
|
||||
sources."bytes-3.1.2"
|
||||
];
|
||||
})
|
||||
sources."bonjour-service-1.2.1"
|
||||
sources."braces-3.0.3"
|
||||
sources."browserslist-4.23.3"
|
||||
sources."buffer-from-1.1.2"
|
||||
sources."bufferutil-4.0.8"
|
||||
sources."bundle-name-4.1.0"
|
||||
sources."bytes-3.0.0"
|
||||
sources."call-bind-1.0.7"
|
||||
sources."caniuse-lite-1.0.30001662"
|
||||
sources."chokidar-3.6.0"
|
||||
sources."chrome-trace-event-1.0.4"
|
||||
sources."colorette-2.0.20"
|
||||
sources."commander-2.20.3"
|
||||
sources."compressible-2.0.18"
|
||||
sources."compression-1.7.4"
|
||||
sources."connect-history-api-fallback-2.0.0"
|
||||
(sources."content-disposition-0.5.4" // {
|
||||
dependencies = [
|
||||
sources."safe-buffer-5.2.1"
|
||||
];
|
||||
})
|
||||
sources."content-type-1.0.5"
|
||||
sources."cookie-0.6.0"
|
||||
sources."cookie-signature-1.0.6"
|
||||
sources."core-util-is-1.0.3"
|
||||
sources."debug-2.6.9"
|
||||
sources."default-browser-5.2.1"
|
||||
sources."default-browser-id-5.0.0"
|
||||
sources."define-data-property-1.1.4"
|
||||
sources."define-lazy-prop-3.0.0"
|
||||
sources."depd-2.0.0"
|
||||
sources."destroy-1.2.0"
|
||||
sources."detect-node-2.1.0"
|
||||
sources."dns-packet-5.6.1"
|
||||
sources."ee-first-1.1.1"
|
||||
sources."electron-to-chromium-1.5.26"
|
||||
sources."encodeurl-2.0.0"
|
||||
sources."enhanced-resolve-5.17.1"
|
||||
sources."es-define-property-1.0.0"
|
||||
sources."es-errors-1.3.0"
|
||||
sources."es-module-lexer-1.5.4"
|
||||
sources."escalade-3.2.0"
|
||||
sources."escape-html-1.0.3"
|
||||
sources."eslint-scope-5.1.1"
|
||||
(sources."esrecurse-4.3.0" // {
|
||||
dependencies = [
|
||||
sources."estraverse-5.3.0"
|
||||
];
|
||||
})
|
||||
sources."estraverse-4.3.0"
|
||||
sources."etag-1.8.1"
|
||||
sources."eventemitter3-4.0.7"
|
||||
sources."events-3.3.0"
|
||||
(sources."express-4.21.0" // {
|
||||
dependencies = [
|
||||
sources."safe-buffer-5.2.1"
|
||||
];
|
||||
})
|
||||
sources."fast-deep-equal-3.1.3"
|
||||
sources."fast-json-stable-stringify-2.1.0"
|
||||
sources."fast-uri-3.0.1"
|
||||
sources."faye-websocket-0.11.4"
|
||||
sources."fill-range-7.1.1"
|
||||
sources."finalhandler-1.3.1"
|
||||
sources."follow-redirects-1.15.9"
|
||||
sources."forwarded-0.2.0"
|
||||
sources."fresh-0.5.2"
|
||||
sources."function-bind-1.1.2"
|
||||
sources."get-intrinsic-1.2.4"
|
||||
sources."glob-parent-5.1.2"
|
||||
sources."glob-to-regexp-0.4.1"
|
||||
sources."gopd-1.0.1"
|
||||
sources."graceful-fs-4.2.11"
|
||||
sources."handle-thing-2.0.1"
|
||||
sources."has-flag-4.0.0"
|
||||
sources."has-property-descriptors-1.0.2"
|
||||
sources."has-proto-1.0.3"
|
||||
sources."has-symbols-1.0.3"
|
||||
sources."hasown-2.0.2"
|
||||
(sources."hpack.js-2.1.6" // {
|
||||
dependencies = [
|
||||
sources."readable-stream-2.3.8"
|
||||
];
|
||||
})
|
||||
sources."html-entities-2.5.2"
|
||||
sources."http-deceiver-1.2.7"
|
||||
sources."http-errors-2.0.0"
|
||||
sources."http-parser-js-0.5.8"
|
||||
sources."http-proxy-1.18.1"
|
||||
sources."http-proxy-middleware-2.0.6"
|
||||
sources."hyperdyperid-1.2.0"
|
||||
sources."iconv-lite-0.4.24"
|
||||
sources."inherits-2.0.4"
|
||||
sources."ipaddr.js-2.2.0"
|
||||
sources."is-binary-path-2.1.0"
|
||||
sources."is-docker-3.0.0"
|
||||
sources."is-extglob-2.1.1"
|
||||
sources."is-glob-4.0.3"
|
||||
sources."is-inside-container-1.0.0"
|
||||
sources."is-network-error-1.1.0"
|
||||
sources."is-number-7.0.0"
|
||||
sources."is-plain-obj-3.0.0"
|
||||
sources."is-wsl-3.1.0"
|
||||
sources."isarray-1.0.0"
|
||||
sources."jest-worker-27.5.1"
|
||||
sources."json-parse-even-better-errors-2.3.1"
|
||||
sources."json-schema-traverse-1.0.0"
|
||||
sources."launch-editor-2.9.1"
|
||||
sources."loader-runner-4.3.0"
|
||||
sources."media-typer-0.3.0"
|
||||
sources."memfs-4.12.0"
|
||||
sources."merge-descriptors-1.0.3"
|
||||
sources."merge-stream-2.0.0"
|
||||
sources."methods-1.1.2"
|
||||
sources."micromatch-4.0.8"
|
||||
sources."mime-1.6.0"
|
||||
sources."mime-db-1.52.0"
|
||||
sources."mime-types-2.1.35"
|
||||
sources."minimalistic-assert-1.0.1"
|
||||
sources."ms-2.0.0"
|
||||
sources."multicast-dns-7.2.5"
|
||||
sources."negotiator-0.6.3"
|
||||
sources."neo-async-2.6.2"
|
||||
sources."node-forge-1.3.1"
|
||||
sources."node-gyp-build-4.8.2"
|
||||
sources."node-releases-2.0.18"
|
||||
sources."normalize-path-3.0.0"
|
||||
sources."object-inspect-1.13.2"
|
||||
sources."obuf-1.1.2"
|
||||
sources."on-finished-2.4.1"
|
||||
sources."on-headers-1.0.2"
|
||||
sources."open-10.1.0"
|
||||
sources."p-retry-6.2.0"
|
||||
sources."parseurl-1.3.3"
|
||||
sources."path-to-regexp-0.1.10"
|
||||
sources."picocolors-1.1.0"
|
||||
sources."picomatch-2.3.1"
|
||||
sources."process-nextick-args-2.0.1"
|
||||
(sources."proxy-addr-2.0.7" // {
|
||||
dependencies = [
|
||||
sources."ipaddr.js-1.9.1"
|
||||
];
|
||||
})
|
||||
sources."punycode-2.3.1"
|
||||
sources."qs-6.13.0"
|
||||
sources."randombytes-2.1.0"
|
||||
sources."range-parser-1.2.1"
|
||||
(sources."raw-body-2.5.2" // {
|
||||
dependencies = [
|
||||
sources."bytes-3.1.2"
|
||||
];
|
||||
})
|
||||
sources."readable-stream-3.6.2"
|
||||
sources."readdirp-3.6.0"
|
||||
sources."require-from-string-2.0.2"
|
||||
sources."requires-port-1.0.0"
|
||||
sources."retry-0.13.1"
|
||||
sources."run-applescript-7.0.0"
|
||||
sources."safe-buffer-5.1.2"
|
||||
sources."safer-buffer-2.1.2"
|
||||
sources."schema-utils-4.2.0"
|
||||
sources."select-hose-2.0.0"
|
||||
sources."selfsigned-2.4.1"
|
||||
(sources."send-0.19.0" // {
|
||||
dependencies = [
|
||||
sources."encodeurl-1.0.2"
|
||||
sources."ms-2.1.3"
|
||||
];
|
||||
})
|
||||
sources."serialize-javascript-6.0.2"
|
||||
(sources."serve-index-1.9.1" // {
|
||||
dependencies = [
|
||||
sources."depd-1.1.2"
|
||||
sources."http-errors-1.6.3"
|
||||
sources."inherits-2.0.3"
|
||||
sources."setprototypeof-1.1.0"
|
||||
sources."statuses-1.5.0"
|
||||
];
|
||||
})
|
||||
sources."serve-static-1.16.2"
|
||||
sources."set-function-length-1.2.2"
|
||||
sources."setprototypeof-1.2.0"
|
||||
sources."shell-quote-1.8.1"
|
||||
sources."side-channel-1.0.6"
|
||||
sources."sockjs-0.3.24"
|
||||
sources."source-map-0.6.1"
|
||||
sources."source-map-support-0.5.21"
|
||||
(sources."spdy-4.0.2" // {
|
||||
dependencies = [
|
||||
sources."debug-4.3.7"
|
||||
sources."ms-2.1.3"
|
||||
];
|
||||
})
|
||||
(sources."spdy-transport-3.0.0" // {
|
||||
dependencies = [
|
||||
sources."debug-4.3.7"
|
||||
sources."ms-2.1.3"
|
||||
];
|
||||
})
|
||||
sources."statuses-2.0.1"
|
||||
sources."string_decoder-1.1.1"
|
||||
sources."supports-color-8.1.1"
|
||||
sources."tapable-2.2.1"
|
||||
sources."terser-5.33.0"
|
||||
(sources."terser-webpack-plugin-5.3.10" // {
|
||||
dependencies = [
|
||||
sources."ajv-6.12.6"
|
||||
sources."ajv-keywords-3.5.2"
|
||||
sources."json-schema-traverse-0.4.1"
|
||||
sources."schema-utils-3.3.0"
|
||||
];
|
||||
})
|
||||
sources."thingies-1.21.0"
|
||||
sources."thunky-1.1.0"
|
||||
sources."to-regex-range-5.0.1"
|
||||
sources."toidentifier-1.0.1"
|
||||
sources."tree-dump-1.0.2"
|
||||
sources."tslib-2.7.0"
|
||||
sources."type-is-1.6.18"
|
||||
sources."undici-types-6.19.8"
|
||||
sources."unpipe-1.0.0"
|
||||
sources."update-browserslist-db-1.1.0"
|
||||
sources."uri-js-4.4.1"
|
||||
sources."utf-8-validate-6.0.4"
|
||||
sources."util-deprecate-1.0.2"
|
||||
sources."utils-merge-1.0.1"
|
||||
sources."uuid-8.3.2"
|
||||
sources."vary-1.1.2"
|
||||
sources."watchpack-2.4.2"
|
||||
sources."wbuf-1.7.3"
|
||||
(sources."webpack-5.94.0" // {
|
||||
dependencies = [
|
||||
sources."ajv-6.12.6"
|
||||
sources."ajv-keywords-3.5.2"
|
||||
sources."json-schema-traverse-0.4.1"
|
||||
sources."schema-utils-3.3.0"
|
||||
];
|
||||
})
|
||||
sources."webpack-dev-middleware-7.4.2"
|
||||
sources."webpack-sources-3.2.3"
|
||||
sources."websocket-driver-0.7.4"
|
||||
sources."websocket-extensions-0.1.4"
|
||||
sources."ws-8.18.0"
|
||||
];
|
||||
buildInputs = globalBuildInputs;
|
||||
meta = {
|
||||
description = "Serves a webpack app. Updates the browser on changes.";
|
||||
homepage = "https://github.com/webpack/webpack-dev-server#readme";
|
||||
license = "MIT";
|
||||
};
|
||||
production = true;
|
||||
bypassCache = true;
|
||||
reconstructLock = true;
|
||||
};
|
||||
copy-webpack-plugin = nodeEnv.buildNodePackage {
|
||||
name = "copy-webpack-plugin";
|
||||
packageName = "copy-webpack-plugin";
|
||||
|
Loading…
Reference in New Issue
Block a user