问题标签 [webpack-3]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
javascript - 使用 webpack 定义全局变量
是否可以使用 webpack 定义一个全局变量以产生如下结果:
我看到的所有示例都使用外部文件require("imports?$=jquery!./file.js")
javascript - 如何确定已安装的 webpack 版本
特别是在从 webpack v1 到 v2 的过渡期间,以编程方式确定安装的webpack版本非常重要,但我似乎找不到合适的 API。
webpack - Webpack 3 没有范围提升,也没有带有 --display-optimization-bailout cli 标志的回退输出
升级到 webpack 3 并使用ModuleConcatenationPlugin
插件(遵循webpack 3: Official Release!!的说明)。我没有看到添加插件与未添加插件的捆绑包的差异,但仍然看到所有函数闭包。
将--display-optimization-bailout
标志添加到输出为什么阻止提升,但我没有看到任何输出。
环顾了一下 webpack 源代码,似乎没有设置救助原因,因为这module.meta.harmonyModule
是错误的,不知道为什么......
https://github.com/webpack/webpack/blob/master/lib/optimize/ModuleConcatenationPlugin.js #L42
其他人有类似的问题吗?
webpack - webpack.optimize.ModuleConcatenationPlugin 不是构造函数
升级到 Webpack 3 后,在 Travis CI 上出现以下错误。
它似乎在我的本地环境中运行良好,但是当我承诺掌握并踢 Travis 时,它现在一直失败并出现以下错误。
还有它抱怨的那条线
当然,我也将 Webpack 设置为版本 3 package.json
。
我的 Travisyml
很简单
aurelia - Aurelia 和 Webpack 3
我刚刚从 Webpack 2.x 升级到最新的 3.0,我的 Aurelia 应用程序在加载时中断并显示以下消息:
Webpack 3 和 Aurelia 是否存在已知问题?我看到了这个类似的SO question,但没有从中学到任何东西。
webpack - webpack 基本配置作为函数不起作用
我正在使用https://webpack.js.org/guides/production/#simple-approach文档中的方法测试 dev / prod 配置文件
但是当我将我的基本配置切换到一个函数时,我收到以下错误WebpackOptionsValidationError: Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.
- configuration should be an object.
我在用着webpack 3.0.0
原来的webpack.config.js
基本配置作为函数
javascript - '路径必须是字符串。在 `Gulp.dest` 中收到未定义的'
我得到什么
gulpfile.js
输出以下错误:
错误是从这行vinyl-fs ( file.relative
is )发出的undefined
。
我能用它做什么?
我建造的
我有以下目录结构:
我想用webpack和gulp把它转换成:
所以我想将每个 ( ./webpack.config.js
, ./index.js
, ./src
) 转换为bundle.js
递归。
我写了以下内容gulpfile.js
:
a 的典型内容webpack.config.js
:
webpack - Moving to Webpack
9 months ago I was struggling with Webpack One:
[ Switching from Gulp to Webpack ]
UPDATE 30.04.20
I have to update this because now everything is a different picture, everything, as you know, evolves very fast in the web programming world, with parcel, rollup. and webpack now you can experiment with a lot of different module bundlers.
Now I will just recommend this starter pack for any JS Webpack. I really appreciate the help and constant updates of Brian Staruk, this has helped us in all of my projects and the project of the company that I work for.
https://github.com/bstaruk/starbase
========================================
UPDATE 24.07.17 || v1
We succeed finally, it was a simple syntaxis problem:
UPDATE 20.07.17 | v0.1a | This part contain our first tryouts without success
So far, I have this:
And We got this Warnings and Errors:
I thought something was wrong with cssnext so I decide to add a postcss.config.js
with:
But I keep getting this errors and warning.
What do you suggest?
----
Thank you
javascript - 使用动态导入而不是 System.import 时出现意外令牌
在重写我对webpack 编译的所有动态System.import
调用失败后:import
我的
webpack.config.js
:
.babelrc
:
package.json
:
javascript - 如何为 import() 全局设置 webpackChunkName?
从 Webpack@3.0.0 开始,我们有了这个强大的功能,可以启用命名的块文件:
但是,我现在有 40 个这样的导入,并且更改每个都有点麻烦。
有没有办法为所有块定义webpackChunkName
和webpackMode
全局?
我想象这样的事情webpack.config.js
: