- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我的 Chrome 扩展项目使用来自 https://github.com/tfoxy/chrome-promise/blob/master/chrome-promise.js 的 Chrome-Promise 模块为了 promise Chrome API 的回调式函数。
使用 Babel 6 编译项目一直运行良好。最近我搬到了 Babel 7。从那时起,当我允许 chrome-promise.js 文件被 Babel 转译时,这会导致在运行延期。当我按原样保留 chrome-promise.js 时,该程序运行良好,未转译。
这是我的 webpack 配置 js 文件的摘录:
module.exports = {
mode: 'production',
entry: {
cs: ['./build/cs.js'],
bg: ['./build/bg.js'],
popup: ['./build/popup.js'],
chromepromise: ['./build/chromepromise.js']
},
output: {
path: path.join(__dirname, 'build'),
filename: '[name].js'
},
module: {
rules: [{
test: /\.js$/,
exclude: [/node_modules/],
loader: "babel-loader"
}]
},
还有我的 package.json 之一,带有 Babel 设置:
{
"name": "Test_CRX",
"version": "1.0.0",
"main": "cs.js",
"scripts": {
"build": "node build",
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@babel/runtime": "^7.1.2",
"archiver": "^3.0.0",
"babel-polyfill": "^6.26.0",
"babel-regenerator-runtime": "^6.5.0",
"chrome-promise": "^3.0.1",
"terser": "^3.10.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-transform-modules-umd": "^7.1.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"shelljs": "^0.8.1",
"terser-webpack-plugin": "^1.1.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"chrome": 60
}
}
],
"@babel/react"
],
"plugins": [
]
}
}
注意:虽然我用Terser压缩了JS代码,但停用后还是报错。
编辑查看我在 github.com/Steve06/chrome-promise-babel-7-issue-repo 上制作的最小 repo
最佳答案
@babel/env
预设默认将您的文件转译为 commonjs
,这需要转译后的文件由 require
或 导入
。为了使其与您的 Chrome 扩展程序兼容,您需要将文件转换为 umd
模块。将其放入您的 package.json
:
"presets": [
[
"@babel/env",
{
"targets": {
"chrome": 60,
"modules": "umd"
}
}
]
],
你还应该知道 source/chrome-promise.js
已经是一个 umd
模块,所以它实际上不需要转译。
关于javascript - 巴别塔 7 : Uncaught ReferenceError after transpiling a module,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52929562/
这是我的 tsconfig.js { "compilerOptions": { "experimentalDecorators": true, "emitDecoratorMetada
我正在尝试用 Typescript 编写我的前端代码并想导出代码,以便我的浏览器可以加载 . 我通过 browserify 和 tsify 做到了这一点。我的麻烦是我的代码在全局命名空间中不可访问。
嗯,我知道我们需要 Transpilers 和 Pollyfills 来保持向后兼容性(按顺序)规模 的 a syntax updated programming language 或 new add
我有一个类如下 export default class Test { constructor() {} } 现在,我想转译这个 $> ./node_modules/.bin/babel-n
我从 React 开始,对 ES6 有一些经验,并且正在尝试了解一个基本的组件定义,我在 react-redux-starterkit 找到了它。 export const Counter = (pr
我上周打开了以下问题,但似乎没有人知道答案: github.com/babel/babel-loader/issues/488 github.com/webpack/webpack/issues/29
我正在尝试使用 babel 转译器在项目中使用 ES6,但我正在努力解决一些非常不寻常的事情:我正在使用包含导入和导出指令的增强型 ES5 js 代码库。 这是一个例子: import Widget
ES6 导入在此文件中有效,但在导入相关文件(例如我的 Mongoose 用户模型)时生成意外标记 import 错误。 import mongoose from 'mongoose'; ^^^^^^
我想为我的新项目使用 BabelJS,但我有一个很大的要求:它必须在 IE8 上可执行。 问题:Babel 将 ES6 编译为 ES5。 IE8 对 ES5 的支持很差。 你知道 Babel 的替代品
我开发应用程序已有 6 个月了。我从来没有在设备上测试过它,总是在浏览器中,但它已经到了我想在我的安卓手机上测试的地步。 所以我执行 ionic cordova run android --devic
操作系统:Windows Pro 10 Webstorm:ver 11.0.1 AngularJS:ver 2.0.0-alpha.46 WebStorm 设置 工具 – 文件观察器:Babal 语言
我正在使用 validator library with tree-shakable esm imports有效的捆绑尺寸。 当我尝试使用 jest 测试使用 esm 模块导入的文件时,出现以下错误
问题来源:我无法按原样使用 Javascript,因为 Firebase Functions Node.Js 版本尚不支持 Async/Await。所以我把它放在 Typescript 中,现在正在尝
我有一些继承自 Array 的 ES6 类: class Cache extends Array { add(item) { if(!item.doNotRemove) thi
我在 Node.js 上运行了这个网络应用程序。代码在 ES5 中。现在我将代码更改为 ES6 并使用 Babel Transpilation。转译运行良好,但在启动服务器时出现以下错误: *Type
问题: 无法将 Babel Transpiler 与 Nodemon 一起使用 详细信息: 在 package.json 中我有: "scripts": { "start": "nodemon
我的 Chrome 扩展项目使用来自 https://github.com/tfoxy/chrome-promise/blob/master/chrome-promise.js 的 Chrome-Pr
我有兴趣使用一堆 JS 库,而不依赖于基于 npm 的工具和额外的捆绑步骤。 有了浏览器对 ES6 模块的支持,我可以像这样使用模块: import Vue from 'https://un
我想学习 Angular 2 并将我的应用程序切换为使用它,但是,我在使用 TypeScript 时遇到了问题。 在我当前的环境中,我无法使用转译器/编译器。我目前只需要运行 node.js 可执行文
I am using plugin called babel-plugin-transform-react-class-to-function for conversion of react c
我是一名优秀的程序员,十分优秀!