gpt4 book ai didi

javascript - 如何选择 node_modules dist flavor 与 webpack 捆绑在一起

转载 作者:数据小太阳 更新时间:2023-10-29 04:48:52 27 4
gpt4 key购买 nike

问题:

在我将 AJV.js 升级到版本 6.4 后,我的 vendor bundle 包含“uri-js”ESNEXT 版本而不是破坏 IE11 兼容性的 ES5 版本。

分析:

我认为 AJV 通过 require('uri-js') 调用引用 uri-js,而 uri-js 有两种形式:

/node_modules/uri-js/dist/:

  • es5
  • 下一个

出于某种原因,Webpack (V 4.8) 将 uri-js 的“esnext”风格捆绑到我的 vendor bundle 中,而不是使用“es5”。我找不到我必须如何/在何处指定我的首选构建目标。

这是我的 webpack.config.js:

const path = require("path");
const webpack = require("webpack");
const ExtractTextPlugin = require("extract-text-webpack-plugin");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin');

module.exports = {
entry: {
app: './src/index.tsx'
},
output: {
filename: "js/[name].bundle.js",
path: __dirname + "/dist"
},
devtool: "source-map",
resolve: {
extensions: [".ts", ".tsx", ".js", ".jsx", ".json"]
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: "ts-loader"
},
{
test: /\.less$/,
use: ExtractTextPlugin.extract({
use: [{
loader: "css-loader",
options: {
localIdentName: '[local]--[hash:5]',
sourceMap: true
}

}, {
loader: "less-loader",
options: {
sourceMap: true
}
}],
fallback: "style-loader",
publicPath: "../"
}),
exclude: "/node_modules/"
},
{
test: /\.html$/,
use: 'raw-loader'
},
{
test: /\.jpe?g$|\.gif$|\.png$/i,
loader: "file-loader?name=assets/img/[name].[ext]"
},
{
test: /\.woff2?$|\.ttf$|\.eot$|\.svg$/,
use: "file-loader?name=assets/[name].[ext]"
}
]
},
plugins: [
new ExtractTextPlugin({
filename: "quino/style/style.css",
allChunks: true
}),
new HtmlWebpackPlugin({
template: "src/index.html",
filename: "index.html"
}),
new CopyWebpackPlugin([])
],
optimization: {
splitChunks: {
cacheGroups: {
commons: { test: /[\\/]node_modules[\\/]/, name: "vendors", chunks: "all" }
}
}
}
};

package.json:

{
"name": "MyApp",
"version": "1.0.0",
"sideEffects": false,
"description": "-",
"private": false,
"scripts": {
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack-dev-server --config webpack.config.js --host 0.0.0.0 --progress --colors --history-api-fallback --mode development"
},
"author": "Me",
"license": "some",
"devDependencies": {
.... stuff ....
},
"dependencies": {
.... stuff ....
"ajv": "^6.4.0",
.... more stuff ....
}
}

我知道我自己的代码会使用 TypeScript (V 2.8) 编译器转译为 ES5。但是 node_modules 呢?尤其是那些已经在他们的 dist 文件夹中发布了 ES5 版本的?

如果它在这里很重要,我的 tsconfig.json:

{
"compilerOptions": {
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"exclude": [
"dist/**",
"./*.js",
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
]
}

我还考虑过包含 Babel 以将所有 node_modules 降级为 ES5,但这对我来说听起来有点矫枉过正,尤其是因为模块已经包含了 ES5 风格。

问题:

  1. 我可以为我的 node_modules 指定首选 ES5 版本的 dist 文件夹吗?也许在我的 webpack.config 或 package.json 中?

  2. 如何选择正确的 node_modules/.../dist/ 文件夹?

最佳答案

  1. Can I specify that I prefere ES5 version of the dist folder for my node_modules? Maybe in my webpack.config or in package.json?

据我所知,没有通用的方法来处理同一 NPM 包的不同风格(例如 ES5、ESNEXT 等)。每个包都有自己的做事方式。所以没有通用的选择方法。相反,必须将一些东西合并到您的任务运行程序(Gulp、Webpack、Grunt 等)中以解决出现的问题。

  1. How does the selection of the right node_modules/.../dist/ folders work?

一个 NPM 包包含一个 package.json。在此文件中有一个 main 字段指定要在您的应用程序中包含/使用的内容或捆绑程序选择的内容等。如果不存在 mainindex .js 将用作默认值。

选择过程的其余部分是特定于包的。这也适用于包的文件夹结构。有些使用 /dist/.. 来实现不同的风格,有些则在其他文件夹中提供调试和生产版本。高度依赖于每个包本身使用的文件/文件版本。

没有像 .net Nuget 中那样的标准化系统打包 lib/... 文件夹的结构。

我仍然不确定的是为什么选择 URL-JS 的 ESNEXT 版本,因为 URL-JS 指向它的 ES5 版本。致力于此 ;-)

关于javascript - 如何选择 node_modules dist flavor 与 webpack 捆绑在一起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50364263/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com