- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
关于学科库的初步解释
很抱歉让你读到这篇文章来耽误你的时间。我写它是为了回答诸如“你在做什么?”之类的问题。和“你为什么要这样做?”。
library由大量的辅助函数组成一个类。在这方面它类似于 lodash ( check the structure of lodash ),但与 lodash 不同的是,源代码由 multilevel directories 组织。 .这对开发人员来说很舒服,但对用户来说可能不舒服:要将所需的功能导入项目,用户必须知道它在哪里,例如。 G。:
import {
computeFirstItemNumberForSpecificPaginationPage
} from "@yamato-daiwa/es-extensions/Number/Pagination";
为了解决这个问题,大部分功能都被导入到
index.ts
并从那里再次导出。现在用户可以获得所需的功能:
import {
computeFirstItemNumberForSpecificPaginationPage
} from "@yamato-daiwa/es-extensions";
请注意
index.ts
中的所有功能(将由 TypeScript 编译为
index.js
)适用于 BrowserJS 和 NodeJS。专门针对 BrowserJS 的功能位于
BrowserJS.ts
尤其是对于
NodeJS.ts
中的 NodeJS (目前几乎是空的,但再导出的方法是相同的)。
Distributable
directory)。
isUndefined
函数只会留在 Webpack 包中:
import { isUndefined } from "@yamato-daiwa/es-extensions"
const test: string | undefined = "ALPHA";
console.log(isUndefined(test));
但实际上,Webpack 离开了
index.js
的所有内容的图书馆。我美化了 Webpack 构建的缩小版 JavaScript;它像是:
(() => {
"use strict";
var e = {
5272: (e, t) => {
Object.defineProperty(t, "__esModule", {
value: !0
}), t.default = function(e, t) {
for (const [a, n] of e.entries())
if (t(n)) return a;
return null
}
},
7684: (e, t) => {
Object.defineProperty(t, "__esModule", {
value: !0
}), t.default = function(e, t) {
const a = [];
return e.forEach(((e, n) => {
t(e) && a.push(n)
})), a
}
},
// ...
我想每个人都理解这是 Not Acceptable ,特别是对于每千字节计数的浏览器应用程序。
npm i
命令)。 src/index.ts
.它进口 isUndefined
库中的函数并使用它。 npm run ProductionBuild
index.js
通过 beautifier.io 等工具.您将看到整个库已被捆绑,而希望只有 inUndefined
已捆绑。 index.js
好像:
const isStringifiedNonNegativeIntegerOfRegularNotation_1 = require("./Numbers/isStringifiedNonNegativeIntegerOfRegularNotation");
exports.isStringifiedNonNegativeIntegerOfRegularNotation = isStringifiedNonNegativeIntegerOfRegularNotation_1.default;
const separateEach3DigitsGroupWithComma_1 = require("./Numbers/separateEach3DigitsGroupWithComma");
exports.separateEach3DigitsGroupWithComma = separateEach3DigitsGroupWithComma_1.default;
(
Check full file)
import isUndefined from "@yamato-daiwa/es-extensions/TypeGuards/isUndefined"
而不是
import { isUndefined } from "@yamato-daiwa/es-extensions"
,不会输出多余的代码。但正如我已经说过的,这种解决方案是 Not Acceptable ,因为图书馆用户必须知道
isUndefined
的位置。并组织了其他功能。
CommonJS
.这里是
tsconfig.json
图书馆:
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "Node",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"removeComments": true,
"outDir": "Distributable/",
"declaration": true
},
"include": [ "Source/**/*" ]
}
根据假设,根据特定的模块类型,Webpack 可以将代码捆绑到单体结构中,即使没有使用这些模块,也无法分解和过滤掉一些模块。
Now all these (AMD, UMD, CommonJS) slowly become a part of history,but we still can find them in old scripts.
{
"compilerOptions": {
"target": "ES2020",
"strict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@SourceFilesRoot/*": ["./src/*"]
}
}
}
最佳答案
相信你至少需要设置module
以便输出 ES6 或更高版本。可能的值包括
"es6"
"es2020"
"esnext"
Tree shaking is a term commonly used in the JavaScript context for dead-code elimination. It relies on the static structure of ES2015 module syntax, i.e. import and export. The name and concept have been popularized by the ES2015 module bundler rollup.
moduleResolution:
可以保留为
"node"
但是,正确的
module:
设置不一定是足够的,甚至可能是不可取的。请参阅以下部分:
The webpack 2 release came with built-in support for ES2015 modules (alias harmony modules) as well as unused module export detection. The new webpack 4 release expands on this capability with a way to provide hints to the compiler via the "sideEffects" package.json property to denote which files in your project are "pure" and therefore safe to prune if unused.
sideEffects:
的默认值似乎如果未指定是
false
,所以你真的不必担心,除非你的 ES6 代码/模块有某些副作用,所以它不应该被摇树。
sideEffects:false
在顶层package.json
对于在您的项目中启用 tree-shaking 至关重要,如下所示。
lodash
的不同项目中,
sideEffects
并不重要。这可能是因为库目录结构和
index.js
的差异)。
loadash
不会被树动摇,因为它不是 es6。
npm i lodash-es
npm i @types/lodash-es
并更改您的导入语句
import * as _ from "lodash"
至
import * as _ from "lodash-es"
看到这个
SE answer进行讨论。
modules
"amd" | "umd" | "systemjs" | "commonjs" | "cjs" | "auto" | false, defaults to "auto".
Enable transformation of ES module syntax to another module type. Note that cjs is just an alias for commonjs.
Setting this to false will preserve ES modules. Use this only if you intend to ship native ES Modules to browsers. If you are using a bundler with Babel, the default modules: "auto" is always preferred.modules: "auto"
By default @babel/preset-env uses caller data to determine whether ES modules and module features (e.g. import()) should be transformed. Generally caller data will be specified in the bundler plugins (e.g. babel-loader, @rollup/plugin-babel) and thus it is not recommended to pass caller data yourself -- The passed caller may overwrite the one from bundler plugins and in the future you may get suboptimal results if bundlers supports new module features.
"module":"ESNext"
没有区别与“CommonJS”相比。会不会是
@yamato-daiwa/
下的模块?没有预编译成es6?
package.json
{
"private": true,
"scripts": {
"ProductionBuild": "webpack --mode production"
},
"sideEffects":false,
"devDependencies": {
"ts-loader": "9.2.3",
"typescript": "4.3.2",
"webpack": "5.38.1",
"webpack-cli": "4.7.0",
"webpack-node-externals": "3.0.0",
"@yamato-daiwa/es-extensions": "file:../yamato_daiwa-es_extensions/Distributable/"
}
}
"sideEffects":false,
已添加。
tsconfig.json
{
"compilerOptions": {
"target": "ES2020",
"strict": true,
"module": "es2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"baseUrl": "./",
"paths": {
"@SourceFilesRoot/*": ["./src/*"]
}
}
}
模块更改为
"module": "es2020",
yamato_daiwa-es_extensions
tsconfig.json
{
"compilerOptions": {
"target": "ES2020",
"module": "es2020",
"moduleResolution": "Node",
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"removeComments": true,
"outDir": "Distributable/",
"declaration": true
},
"include": [ "Source/**/*" ],
}
模块更改为
"module": "es2020",
使用原文index.ts
文件,没有更改
index.js
大小为 39 个字节:
(()=>{"use strict";console.log(!1)})();
关于javascript - 如何为库设置 TypeScript 编译器,以便 Webpack 在依赖项目中切断未使用的模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68340624/
我正在使用 NetBeans 开发 Java 中的 WebService,并使用 gradle 作为依赖管理。 我找到了this article关于使用 gradle 开发 Web 项目。它使用 Gr
我正在将旧项目从 ant 迁移到 gradle(以使用其依赖项管理和构建功能),并且在生成 时遇到问题>eclipse 项目。今天的大问题是因为该项目有一些子项目被拆分成 war 和 jar 包部署到
我已经为这个错误苦苦挣扎了很长时间。如果有帮助的话,我会提供一些问题的快照。请指导我该怎么办????在我看来,它看起来一团糟。 *** glibc detected *** /home/shivam/
我在 Ubuntu 12.10 上运行 NetBeans 7.3。我正在学习 Java Web 开发类(class),因此我有一个名为 jsage8 的项目,其中包含我为该类(class)所做的工作。
我想知道 Codeplex、GitHub 等中是否有任何突出的项目是 C# 和 ASP.NET,甚至只是 C# API 与功能测试 (NUnit) 和模拟(RhinoMocks、NMock 等)。 重
我创建了一个 Maven 项目,包装类型为“jar”,名为“Y”我已经完成了“Maven 安装”,并且可以在我的本地存储库中找到它.. 然后,我创建了另一个项目,包装类型为“war”,称为“X”。在这
我一直在关注the instructions用于将 facebook SDK 集成到我的应用程序中。除了“helloFacebookSample”之外,我已经成功地编译并运行了所有给定的示例应用程序。
我想知道,为什么我们(Java 社区)需要 Apache Harmony 项目,而已经有了 OpenJDK 项目。两者不是都是在开源许可下发布的吗? 最佳答案 事实恰恰相反。 Harmony 的成立是
我正在尝试使用 Jsoup HTML Parser 从网站获取缩略图 URL我需要提取所有以 60x60.jpg(或 png)结尾的 URL(所有缩略图 URL 都以此 URL 结尾) 问题是我让它在
我无法构建 gradle 项目,即使我编辑 gradle 属性,我也会收到以下错误: Error:(22, 1) A problem occurred evaluating root project
我有这个代码: var NToDel:NSArray = [] var addInNToDelArray = "Test1 \ Test2" 如何在 NToDel:NSArray 中添加 addInN
如何在单击显示更多(按钮)后将主题列表限制为 5 个(项目)。 还有 3(项目),依此类推到列表末尾,然后它会显示显示更少(按钮)。 例如:在 Udemy 过滤器选项中,当您点击查看更多按钮时,它仅显
如何将现有的 Flutter 项目导入为 gradle 项目? “导入项目”向导要求 Gradle 主路径。 我有 gradle,安装在我的系统中。但是这里需要设置什么(哪条路径)。 这是我正在尝试的
我有一个关于 Bitbucket 的项目。只有源被提交。为了将项目检索到新机器上,我在 IntelliJ 中使用了 Version Control > Checkout from Ve
所以,我想更改我公司的一个项目,以使用一些与 IDE 无关的设置。我在使用 Tomcat 设置 Java 应用程序方面有非常少的经验(我几乎不记得它是如何工作的)。 因此,为了帮助制作独立于 IDE
我有 2 个独立的项目,一个在 Cocos2dx v3.6 中,一个在 Swift 中。我想从 Swift 项目开始游戏。我该怎么做? 我已经将整个 cocos2dx 项目复制到我的 Swift 项目
Cordova 绝对是新手。这些是我完成的步骤: checkout 现有项目 运行cordova build ios 以上生成此构建错误: (node:10242) UnhandledPromiseR
我正在使用 JQuery 隐藏/显示 li。我的要求是,当我点击任何 li 时,它应该显示但隐藏所有其他 li 项目。当我将鼠标悬停在文本上时 'show all list item but don
我想将我所有的java 项目(223 个项目)迁移到gradle 项目。我正在使用由 SpringSource STS 团队开发的 Gradle Eclipse 插件。 目前,我所有的 java 项目
我下载this Eclipse Luna ,对于 Java EE 开发人员,如描述中所见,它支持 Web 应用程序。我找不到 file -> new -> other -> web projects
我是一名优秀的程序员,十分优秀!