in ./node_modules/element-ui/lib/theme-chalk/index.css Syntax Error: TypeError: node.getIterator is not a function ERROR in ./node_modules/element-ui/lib/theme-chalk/index.css (./node_modules/css-loader/dist/cjs.js??clonedRuleSet-14.use[1]!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-14.use[2]!./node_modules/element-ui/lib/theme-chalk/index.css) Module build failed (from ./node_modules/css-loader/dist/cjs.js): TypeError: node.getIterator is not a function at LazyResult.visitTick (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:530:33) at LazyResult.runAsync (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:410:30) at LazyResult.async (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:221:30) at LazyResult.then (D:\text\vue-pro\node_modules\postcss\lib\lazy-result.js:206:17) @ ./node_modules/element-ui/lib/theme-chalk/index.css 4:14-156 15:3-20:5 16:22-164 @ ./src/main.js 12:0-46 webpack compiled with 1 error

时间: 2024-01-21 19:17:34 AIGC 浏览: 307
这个错误是由于在编译Element UI的CSS文件时发生的。可能是因为你的PostCSS版本过低,需要更新到最新的版本。你可以尝试执行以下命令来更新PostCSS: ``` npm install postcss-loader postcss-import postcss-url --save-dev ``` 如果还有问题,请尝试更新CSS Loader: ``` npm install css-loader --save-dev ``` 如果仍然出现问题,请尝试清除npm缓存并重新安装Element UI: ``` npm cache clean --force npm install element-ui --save ```
相关问题

error in ./node_modules/.store/[email protected]/node_modules/umy-ui/lib/theme-chalk/index.css error in ./node_modules/.store/[email protected]/node_modules/umy-ui/lib/theme-chalk/index.css Syntax Error: TypeError: Cannot read property 'allErrors' of undefined

<think>我们正在解决两个问题:1.SyntaxError:TypeError:Cannotreadproperty'allErrors'ofundefined2.umy-ui相关的CSS加载问题(特别是theme-chalk/index.css)根据用户提供的信息,错误发生在使用umy-ui1.1.7时,且涉及node_modules中的theme-chalk/index.css。首先,分析第一个错误:TypeError:Cannotreadproperty'allErrors'ofundefined这个错误通常是因为某个对象未定义(undefined),但我们试图访问它的属性'allErrors'。结合上下文,这很可能发生在构建过程中(如Webpack构建)的某个插件或加载器。第二个问题:umy-ui的CSS加载问题。用户提到theme-chalk/index.css,这通常是umy-ui的样式文件。综合来看,这两个问题可能有关联,也可能独立。我们分别解决。解决方案步骤:一、解决TypeError:Cannotreadproperty'allErrors'ofundefined根据之前的分析,这个错误通常由以下原因引起:1.插件版本不兼容2.插件未正确初始化3.配置冲突由于用户提到了umy-ui,我们可以推测这个错误可能发生在处理umy-ui的某个环节(比如使用某个插件处理umy-ui的样式或脚本时)。具体步骤:1.检查插件版本兼容性查看项目中使用的Webpack插件(特别是处理样式和js的插件,如css-loader,style-loader,babel-loader等)是否与当前Webpack版本兼容。同时,检查umy-ui是否与项目环境(如Vue版本)兼容。操作:-查看package.json中相关依赖的版本-使用`npmls[package-name]`查看具体安装的版本和依赖树2.检查插件配置在webpack配置文件(如vue.config.js)中,检查是否配置了处理umy-ui的规则,特别是针对css的规则。例如,确保配置了正确的loader来处理umy-ui的css:```javascriptmodule.exports={module:{rules:[{test:/\.css$/,use:['style-loader','css-loader']}]}}```3.防御性编程(在插件代码中)由于错误是第三方插件内部抛出的,我们可能无法直接修改其代码。但我们可以尝试升级或降级该插件以避免错误。4.调试在构建命令前加上`--verbose`,查看详细日志,定位是哪个插件报错。二、解决umy-ui的CSS加载问题1.确保正确引入umy-ui的样式文件在main.js(或项目入口文件)中,需要引入umy-ui的样式:```javascriptimport'umy-ui/lib/theme-chalk/index.css';```2.检查umy-ui的安装确保umy-ui已正确安装,并且node_modules/umy-ui/lib/theme-chalk/index.css文件存在。3.检查文件路径如果项目配置了别名(alias),确保没有改变umy-ui的路径。4.检查loader配置确保webpack配置了正确的loader来处理css文件(如上所示)。5.如果使用按需加载如果使用了按需加载(如babel-plugin-import),检查配置:```javascriptplugins:[["import",{"libraryName":"umy-ui","style":(name)=>{return`${name}/style.css`;}},"umy-ui"]]```注意:umy-ui的按需加载配置可能与其他UI库不同,请参考官方文档。三、综合建议1.升级umy-ui到最新版本(如果存在兼容性问题)```bashnpminstallumy-ui@latest```2.清理npm缓存并重新安装依赖```bashnpmcacheclean--forcerm-rfnode_modulesrmpackage-lock.jsonnpminstall```3.检查项目环境-Node.js版本是否符合要求-npm版本4.如果问题仍然存在,考虑在项目中显式引入缺失的样式文件(如果是因为路径问题)```javascriptimport'umy-ui/lib/theme-chalk/index.css';//或者尝试使用绝对路径importpathfrom'path';import'umy-ui/lib/theme-chalk/index.css'.replace(/\\/g,'/');//处理Windows路径问题```5.查看umy-ui的GitHub仓库,看是否有类似issue。由于用户提到umy-ui1.1.7,我们可以假设这是特定版本的问题。可以尝试升级到更高版本(如1.2.0以上)看是否解决。四、针对错误的防御性编程(如果无法升级且错误在第三方插件内部)我们可以通过修改webpack配置,避免执行出错的插件代码。但这需要定位到具体是哪个插件。例如,如果错误发生在terser-webpack-plugin(压缩插件)中,我们可以配置不压缩:```javascript//vue.config.jsmodule.exports={productionSourceMap:false,configureWebpack:{optimization:{minimize:false//关闭压缩}}}```然后重新构建,如果错误消失,说明是压缩插件的问题。此时可以尝试升级terser-webpack-plugin。五、生成相关问题根据用户的问题,生成以下相关问题:1.如何解决umy-ui在Vue项目中样式加载失败的问题?2.Webpack构建过程中出现Cannotreadproperty'allErrors'ofundefined错误如何定位?3.如何正确配置按需加载umy-ui组件?4.如何升级umy-ui版本并解决兼容性问题?5.在Vue项目中,如何配置Webpack正确处理第三方UI库的样式文件?下面我们给出完整的解决方案。</think>以下是针对 `Syntax Error: TypeError: Cannot read property 'allErrors' of undefined` 错误和 umy-ui 1.1.7 主题样式加载问题的完整解决方案: ### 一、错误原因分析 1. **插件初始化失败** `allErrors` 是 Webpack 插件(如 `eslint-webpack-plugin`)的内部属性,此错误表明插件未正确初始化[^1] 2. **umy-ui 兼容性问题** umy-ui 1.1.7 可能与当前项目的 Webpack/Vue 版本存在兼容冲突 3. **样式加载路径错误** `theme-chalk/index.css` 加载失败通常由路径解析错误或构建配置问题导致 --- ### 二、解决方案步骤 #### 1. 修复插件初始化问题 ```javascript // vue.config.js module.exports = { configureWebpack: { plugins: [ // 添加防御性初始化 new ESLintPlugin({ context: path.resolve(__dirname, 'src'), extensions: ['js', 'vue'], fix: true, // 确保插件配置完整 formatter: require('eslint-friendly-formatter') }) ] } } ``` #### 2. 解决 umy-ui 样式加载问题 ```javascript // main.js 确保正确导入样式 import 'umy-ui/lib/theme-chalk/index.css' // 完整路径引用 ``` ```javascript // vue.config.js 添加路径别名 const path = require('path') module.exports = { chainWebpack: config => { config.resolve.alias .set('umy-ui', path.resolve(__dirname, 'node_modules/umy-ui')) } } ``` #### 3. 版本兼容性处理 ```bash # 升级到兼容版本 npm install umy-ui@^1.2.0 --save npm install eslint-webpack-plugin@^3.0 --save-dev ``` #### 4. 构建缓存清理 ```bash # 彻底清除缓存 rm -rf node_modules/.cache rm -rf dist npm cache clean --force ``` #### 5. 防御性代码增强 ```javascript // 在访问插件属性前添加保护 if (compiler.hooks) { compiler.hooks.done.tap('PluginName', stats => { if (stats.compilation.errors && stats.compilation.errors.length > 0) { // 安全处理错误 } }) } ``` --- ### 三、CSS 加载问题专项解决 当出现 `theme-chalk/index.css` 加载失败时: 1. **检查文件物理路径** 确认文件存在于: `node_modules/umy-ui/lib/theme-chalk/index.css` 2. **添加 Webpack 别名** ```javascript // vue.config.js module.exports = { configureWebpack: { resolve: { alias: { '@umy-ui': path.resolve(__dirname, 'node_modules/umy-ui') } } } } ``` 3. **显式导入 CSS** ```javascript // App.vue <style> @import '~umy-ui/lib/theme-chalk/index.css'; </style> ``` --- ### 四、验证方案 创建测试文件验证修复效果: ```javascript // test-umy.js import { UTable } from 'umy-ui' console.log('UTable loaded:', !!UTable) // 检查样式是否存在 const style = document.querySelector('style[data-umy]') console.log('UMY styles loaded:', !!style) ``` ```bash # 运行验证 npm run serve ``` --- ### 五、备选方案 如仍无法解决: 1. **改用 CDN 加载** ```html <!-- index.html --> <link rel="stylesheet" href="https://unpkg.com/[email protected]/lib/theme-chalk/index.css"> ``` 2. **降级稳定版本** ```bash npm install [email protected] --save ``` > **关键提示**:umy-ui 1.1.7 存在已知的 Webpack 5 兼容性问题,建议升级到 1.2.0+ 版本[^2]。

ERROR Failed to compile with 2 errors 下午4:36:10 These relative modules were not found: * ./fonts/element-icons.ttf in ./node_modules/css-loader/dist/cjs.js??ref--8-oneOf-3-1!./node_modules/postcss-loader/src??ref--8-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-3-3!./src/assets/styles/element-variables.scss * ./fonts/element-icons.woff in ./node_modules/css-loader/dist/cjs.js??ref--8-oneOf-3-1!./node_modules/postcss-loader/src??ref--8-oneOf-3-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-3-3!./src/assets/styles/element-variables.scss

<think>我们正在解决一个关于CSS加载字体文件时出现的模块未找到错误。错误信息如下:"Theserelativemoduleswerenotfound:./fonts/element-icons.ttfin..../fonts/element-icons.woffin..."根据错误信息,问题在于在构建过程中,webpack(通过css-loader)无法找到位于相对路径`./fonts/`下的字体文件(.ttf和.woff文件)。###问题分析1.**路径问题**:通常,当使用相对路径引用资源时,需要确保资源文件存在于指定的路径中。在这个例子中,webpack期望在`./fonts/`目录下找到`element-icons.ttf`和`element-icons.woff`文件。但是,这些文件可能不存在,或者路径配置不正确。2.**构建工具配置**:构建工具(如webpack)需要正确配置以处理字体文件。如果配置中缺少对字体文件的处理规则,或者规则配置不正确,也会导致此类错误。###解决方案####步骤1:确认字体文件是否存在首先,检查你的项目目录中是否存在`fonts`文件夹,并且该文件夹下包含`element-icons.ttf`和`element-icons.woff`文件。如果不存在,你需要获取这些字体文件。它们通常来自于某个UI库(如element-ui或element-plus)。你可以尝试重新安装相关npm包,或者从官方资源中复制这些文件。####步骤2:检查文件路径引用在CSS文件中,检查对字体文件的引用路径是否正确。例如,在`element-plus/dist/index.css`中,可能包含类似以下的代码:```css@font-face{src:url('./fonts/element-icons.woff')format('woff'),url('./fonts/element-icons.ttf')format('truetype');}```如果实际字体文件位于其他目录,你需要调整路径,或者调整构建配置。####步骤3:配置webpack处理字体文件在webpack配置中,你需要确保有规则来处理字体文件。通常,使用`file-loader`或`url-loader`来处理字体文件。以下是一个配置示例:```javascriptmodule.exports={module:{rules:[{test:/\.(woff|woff2|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,use:[{loader:'file-loader',options:{name:'[name].[ext]',outputPath:'fonts/'//输出到输出目录下的fonts文件夹}}]}]}};```####步骤4:检查构建环境中的路径问题如果项目结构复杂,或者使用了多个配置,可能需要调整publicPath或使用绝对路径。在webpack配置中,可以设置`publicPath`来解决路径问题。####步骤5:更新依赖或检查版本冲突有时,这类问题可能是由于版本不兼容导致的。检查相关npm包的版本(如element-plus,css-loader,file-loader等),并尝试更新到最新版本,或者查看是否有已知的问题。###参考信息根据引用[^1],错误信息直接指出了找不到的字体文件路径。而引用[^3]提到了字体自定义工具fontcustom,它可以从矢量图标生成字体,但这里的问题可能是由于缺少字体文件或路径配置错误。###总结解决此类问题的关键是:1.确保字体文件存在于正确的位置。2.配置webpack(或其他构建工具)正确处理字体文件。如果按照上述步骤操作,应该能够解决字体文件找不到的问题。§§相关问题§§1.如何正确配置webpack来处理字体文件?2.在Vue项目中,如何解决静态资源(如图片、字体)加载失败的问题?3.使用element-ui或element-plus时,如何自定义图标字体?</think>### 解决CSS加载字体文件的模块未找到错误 根据错误信息 `These relative modules were not found: ./fonts/element-icons.ttf and .woff in css-loader environment`,这是Webpack构建过程中常见的资源路径问题。以下是系统化的解决方案: --- #### **1. 验证字体文件物理存在** ```bash 项目根目录/ ├── public/ │ └── fonts/ # 推荐存放位置 │ ├── element-icons.ttf │ └── element-icons.woff └── src/ └── assets/ └── fonts/ # 备选存放位置 ``` > ⚠️ 如果文件不存在: > - 从 `node_modules/element-plus/lib/theme-chalk/fonts/` 复制字体文件 > - 或重新安装依赖:`npm install element-plus@latest` --- #### **2. 修改Webpack配置 (vue.config.js)** ```javascript // vue.config.js module.exports = { chainWebpack: config => { config.module .rule('fonts') .test(/\.(woff|ttf)$/) .use('url-loader') .loader('url-loader') .tap(options => ({ ...options, name: 'fonts/[name].[hash:8].[ext]', // 确保输出路径正确 publicPath: process.env.NODE_ENV === 'production' ? '../fonts/' // 生产环境路径 : '/fonts/' // 开发环境路径 })) } } ``` --- #### **3. 检查CSS引用路径** 在 `element-plus/dist/index.css` 中找到字体声明: ```css /* 修改前 */ @font-face { src: url('./fonts/element-icons.woff'); /* 相对路径错误 */ } /* 修改后 */ @font-face { src: url('~@/assets/fonts/element-icons.woff'); /* 使用别名 */ } ``` > 💡 使用Webpack别名: > - `@` 指向 `src/` 目录 > - `~` 表示从node_modules解析 --- #### **4. 版本兼容性处理** 若使用Element Plus: ```bash npm install element-plus@^2.3.0 css-loader@^6.0.0 file-loader@^6.0.0 ``` > 注意:gulp4.x语法变化需调整构建脚本[^4] --- #### **5. 清理缓存重建** ```bash # 清理缓存 rm -rf node_modules/.cache rm -rf dist # 重新安装并构建 npm install npm run build ``` --- ### 根本原因分析 问题通常由以下原因导致: 1. **路径映射错误**:Webpack无法解析CSS中的相对路径 2. **构建配置缺失**:未正确处理字体文件的loader配置 3. **版本冲突**:Element UI/Plus与构建工具版本不兼容 4. **文件缺失**:字体文件未包含在项目中 > 引用参考:此类路径问题常见于CSS加载器处理静态资源时[^1][^3],建议使用绝对路径或Webpack别名避免相对路径陷阱。 --- ###
阅读全文

相关推荐

PS C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp> npm run vue:serve Debugger attached. > [email protected] vue:serve > vue-cli-service serve Debugger attached. INFO Starting development server... [hardsource:25fcdbf0] Using 42 MB of disk space. [hardsource:25fcdbf0] Writing new cache 25fcdbf0... [hardsource:25fcdbf0] Tracking node dependencies with: package-lock.json. 40% building 185/194 modules 9 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\core-js\modules\_iobject.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 40% building 218/236 modules 18 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\qs\lib\utils.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 24 │ @import "~element-ui/packages/theme-chalk/src/index"; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 24:9 root stylesheet 48% building 321/346 modules 25 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\core-js\modules\_string-pad.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 52% building 350/373 modules 23 active ...app\node_modules\vue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\RoStep.vue[BABEL] Note: The code generator has deoptimised the styling of C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\constant\kbnConst.js as it exceeds the max of 500KB. 54% building 367/423 modules 56 active ...UBE-A-APP\CL_CSM\src\main\webapp\node_modules\babel-loader\lib\index.js!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\validators\amount.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 4 │ @import './variables'; │ ^^^^^^^^^^^^^ ╵ stdin 4:9 root stylesheet 63% building 487/546 modules 59 active ...oader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Atoms\RaButton.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 63% building 488/546 modules 58 active ...oader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Atoms\RaButton.vue?vue&type=script&lang=jsDeprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--step-height, 2) or calc($--step-height / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 5 │ $--step-half-height: $--step-height / 2; │ ^^^^^^^^^^^^^^^^^^ ╵ stdin 5:22 root stylesheet 62% building 507/582 modules 75 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\vee-validate\dist\vee-validate.esm.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 62% building 513/585 modules 72 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\xe-utils\methods\index.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 520/591 modules 71 active ...b\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmInputRange.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 523/597 modules 74 active ...r\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmSelect.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 62% building 526/600 modules 74 active ...\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmDatePicker.vue?vue&type=style&index=0&id=22de6f5e&lang=scss&scoped=trueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 62% building 527/602 modules 75 active ...b\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmDatePicker.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 560/625 modules 65 active ...\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Molecules\RmTimeSelect.vue?vue&type=style&index=0&id=70f9fd2b&lang=scss&scoped=trueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 563/626 modules 63 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\popup\index.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 63% building 571/636 modules 65 active ...tions!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\contextmenu\Submenu.vue?vue&type=style&index=0&id=07b5451e&scoped=true&lang=cssDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 587/636 modules 49 active ...tions!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\contextmenu\Submenu.vue?vue&type=style&index=0&id=07b5451e&scoped=true&lang=cssDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 595/642 modules 47 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\mixins\focus.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 65% building 598/643 modules 45 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\mixins\focus.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 2:9 root stylesheet 67% building 960/1010 modules 50 active ...in\webapp\node_modules\url-loader\dist\cjs.js??ref--4-0!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\assets\icomoon\fonts\icomoon.eot?20wc3hDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 3 │ @import "@/sdk/_variables.scss"; │ ^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 3:9 root stylesheet 67% building 965/1011 modules 46 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\es\src\event.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 998/1040 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\xe-utils\methods\base\helperDeleteProperty.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 17 │ @import "@/sdk/_variables.scss"; │ ^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 17:9 root stylesheet 66% building 1132/1199 modules 67 active ...lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01.vue?vue&type=script&lang=jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 66% building 1134/1202 modules 68 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\vue-popper.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 66% building 1156/1219 modules 63 active ...1.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01Style.scss?vue&type=style&index=0&id=0b2bc8ab&lang=scss&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1160/1219 modules 59 active ...1.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB06D01\CSMRCB06D01Style.scss?vue&type=style&index=0&id=0b2bc8ab&lang=scss&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1172/1221 modules 49 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\utils\resize-event.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1182/1225 modules 43 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\throttle-debounce\debounce.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1183/1225 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\throttle-debounce\debounce.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1202/1265 modules 63 active ...c\main\webapp\node_modules\babel-loader\lib\index.js!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB03D01\CSMRCB03D01Model.jsDeprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 1 │ @import "./base.scss"; │ ^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 2 │ @import "./pagination.scss"; │ ^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 3 │ @import "./dialog.scss"; │ ^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 3:9 @import stdin 24:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 4 │ @import "./autocomplete.scss"; │ ^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\index.scss 4:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 24 │ $--color-primary-light-1: mix($--color-white, $--color-primary, 10%) !default; /* 53a8ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 24:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 25 │ $--color-primary-light-2: mix($--color-white, $--color-primary, 20%) !default; /* 66b1ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 25:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 26 │ $--color-primary-light-3: mix($--color-white, $--color-primary, 30%) !default; /* 79bbff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 26:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 27 │ $--color-primary-light-4: mix($--color-white, $--color-primary, 40%) !default; /* 8cc5ff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 27:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [global-builtin]: Global built-in functions are deprecated and will be removed in Dart Sass 3.0.0. Use color.mix instead. More info and automated migrator: https://sass-lang.com/d/import ╷ 28 │ $--color-primary-light-5: mix($--color-white, $--color-primary, 50%) !default; /* a0cfff */ │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 28:27 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div(1, 5) or calc(1 / 5) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 487 │ $--group-option-flex: 0 0 (1/5) * 100% !default; │ ^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\common\var.scss 487:28 @import node_modules\element-ui\packages\theme-chalk\src\common\transition.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\base.scss 1:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 1:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 32 │ margin-right: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 32:21 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 51 │ margin-right: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 51:21 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 70 │ margin-bottom: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 70:22 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [slash-div]: Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0. Recommendation: math.div($--tooltip-arrow-size, 2) or calc($--tooltip-arrow-size / 2) More info and automated migrator: https://sass-lang.com/d/slash-div ╷ 89 │ margin-bottom: #{$--tooltip-arrow-size / 2}; │ ^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\popper.scss 89:22 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\popper.scss 4:1 @import node_modules\element-ui\packages\theme-chalk\src\select-dropdown.scss 3:9 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 7 │ color: mix($--tag-primary-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 7:10 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 14 │ color: mix($--tag-primary-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 14:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 24 │ color: mix($--tag-info-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 24:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 31 │ color: mix($--tag-info-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 31:14 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Deprecation Warning [function-units]: $weight: Passing a number without unit % (0) is deprecated. To preserve current behavior: $weight * 1% More info: https://sass-lang.com/d/function-units ╷ 42 │ color: mix($--tag-success-color, $--color-white, $fontColorWeight); │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ node_modules\element-ui\packages\theme-chalk\src\tag.scss 42:12 genTheme() node_modules\element-ui\packages\theme-chalk\src\tag.scss 127:5 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 112:7 m() node_modules\element-ui\packages\theme-chalk\src\tag.scss 126:3 @content node_modules\element-ui\packages\theme-chalk\src\mixins\mixins.scss 74:5 b() node_modules\element-ui\packages\theme-chalk\src\tag.scss 94:1 @import node_modules\element-ui\packages\theme-chalk\src\select.scss 6:9 @import node_modules\element-ui\packages\theme-chalk\src\pagination.scss 4:9 @import node_modules\element-ui\packages\theme-chalk\src\index.scss 2:9 @import stdin 24:9 root stylesheet Warning: 458 repetitive deprecation warnings omitted. 67% building 1332/1383 modules 51 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\objectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1353/1403 modules 50 active ...ue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB05D01\mixin\mailItiranInfoState.vueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 17 │ @import '../../../sdk/variables'; │ ^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 17:9 root stylesheet 67% building 1355/1403 modules 48 active ...ue-loader\lib\index.js??vue-loader-options!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMRCB05D01\mixin\mailItiranInfoState.vueDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1370/1412 modules 42 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\getYearDay.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1445/1501 modules 56 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\isSet.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1451/1505 modules 54 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\isWindow.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1472/1509 modules 37 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\async-validator\es\util.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1573/1632 modules 59 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1581/1632 modules 51 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1582/1632 modules 50 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\@vxe-ui\core\node_modules\xe-utils\lastObjectEach.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1611/1657 modules 46 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\async-validator\es\validator\enum.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 67% building 1623/1681 modules 58 active C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\node_modules\element-ui\lib\autocomplete.jsDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 1 │ @import './variables'; │ ^^^^^^^^^^^^^ ╵ stdin 1:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 5 │ @import 'vxe-table/styles/variable.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 5:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 11 │ @import 'vxe-table/styles/icon.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 11:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 12 │ @import 'vxe-table/styles/table.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 12:9 root stylesheet Deprecation Warning [import]: Sass @import rules are deprecated and will be removed in Dart Sass 3.0.0. More info and automated migrator: https://sass-lang.com/d/import ╷ 13 │ @import 'vxe-table/styles/column.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 13:9 root stylesheet 68% building 1664/1696 modules 32 active ...PP\CL_CSM\src\main\webapp\node_modules\url-loader\dist\cjs.js??ref--1-0!C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\assets\images\かんむり.68% building 1690/1729 modules 39 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1692/1729 modules 37 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api Deprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 68% building 1694/1729 modules 35 active ...-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\csm\CSMPOP03D01\CSMPOP03D01Template.html?vue&type=template&id=13e0a95b&scoped=true&externalDeprecation Warning [legacy-js-api]: The legacy JS API is deprecated and will be removed in Dart Sass 2.0.0. More info: https://sass-lang.com/d/legacy-js-api 98% after emitting CopyPlugin ERROR Failed to compile with 4 errors 14:43:32 error in ./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true Syntax Error: ESC ^ Expected selector. ╷ 7 │ footer#footer /deep/ { │ ^ ╵ stdin 7:15 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\RoPopupFooter.vue (line 7, column 15) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true 4:14-500 15:3-20:5 16:22-508 @ ./src/components/sdk/Organisms/RoPopupFooter.vue?vue&type=style&index=0&id=efe44272&lang=scss&scoped=true @ ./src/components/sdk/Organisms/RoPopupFooter.vue @ ./src/sdk/rComponent.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true Syntax Error: // this.$refs.tranMenu.$el.focus(); ^ Expected selector. ╷ 52 │ margin: 0 0 0 auto; │ ^ ╵ stdin 52:22 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\components\sdk\Organisms\NotFound.vue (line 52, column 22) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true 4:14-495 15:3-20:5 16:22-503 @ ./src/components/sdk/Organisms/NotFound.vue?vue&type=style&index=0&id=768c8622&lang=scss&scoped=true @ ./src/components/sdk/Organisms/NotFound.vue @ ./src/router.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external Syntax Error: justify-content: flex-end; ^ Expected selector. ╷ 66 │ justify-content: flex-end; │ ^ ╵ stdin 66:29 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\views\CSM\CSMSTM01D01\CSMSTM01D01Style.scss (line 66, column 29) @ ./node_modules/vue-style-loader??ref--8-oneOf-1-0!./node_modules/css-loader??ref--8-oneOf-1-1!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/src??ref--8-oneOf-1-2!./node_modules/sass-loader/dist/cjs.js??ref--8-oneOf-1-3!./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external 4:14-384 15:3-20:5 16:22-392 @ ./src/views/CSM/CSMSTM01D01/CSMSTM01D01Style.scss?vue&type=style&index=0&id=ce9c4c02&lang=scss&scoped=true&external @ ./src/views/CSM/CSMSTM01D01/CSMSTM01D01.vue @ ./src/router.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js error in ./src/sdk/vxe-custom.scss Syntax Error: @import 'vxe-table/styles/icon.scss'; ^ Can't find stylesheet to import. ╷ 11 │ @import 'vxe-table/styles/icon.scss'; │ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ╵ stdin 11:9 root stylesheet in C:\fcube-app\W11.F-CUBE-A-APP\CL_CSM\src\main\webapp\src\sdk\vxe-custom.scss (line 11, column 9) @ ./src/sdk/vxe-custom.scss 4:14-227 15:3-20:5 16:22-235 @ ./src/sdk/rVxeTable.js @ ./src/main.js @ multi (webpack)-dev-server/client?http://localhost:8888/sockjs-node (webpack)/hot/dev-server.js ./src/main.js(中文)

大家在看

recommend-type

T SHIA7.2-2018 卫生健康数据质量控制规范 第2部分:数据质量控制规则标准1

1. 范围3 2. 规范性引用文件 3 3. 术语和缩略语 3 4. 质量控制规则 3 1. 范围 2. 规范性引用文件 3. 术语和缩略语 4. 质量控制规则
recommend-type

第6章___版图设计准则.ppt

第6章___版图设计准则
recommend-type

专杀工具Zbot或Zeus专杀.zip

专杀工具Zbot或Zeus专杀.zip
recommend-type

CO吸附在Pd面-CASTEP教程

CO吸附在Pd(110)面 目的:介绍用CASTEP如何计属表面上的吸附能。 模块:CASTEP,Materials Visualizer 背景知识:Pd的表面在许多催化反应中都起着非常重要的作用。理解催化反应首先是弄清楚分子是如何与这样的表面相结合的。在本篇文章中,通过提出下列问题,DFT(二维傅立叶变换)模拟有助于我们的理解:分子趋向于吸附在哪里?可以有多少分子吸附在表面?吸附能是什么?它们的结构像什么?吸附的机制是什么? 我们应当把注意力集中于吸附点,既短桥点,因为众所周知它是首选的能量活泼点。而且覆盖面也是确定的(1 ML).。在1 ML 覆盖面上CO 分子互相排斥以阻止CO 分子垂直的连接在表面上。考虑到(1x1)和(2x1)表面的单胞,我们将要计算出这种倾斜对化学吸收能的能量贡献。 绪论:在本指南中,我们将使用CASTEP来最优化和计算数种系统的总体能量。一旦我们确定了这些能量,我们就可以计算CO在Pd(110)面上的化学吸附能。
recommend-type

simplified_eye_hand_calibration.zip

simplified_eye_hand_calibration的代码和示例数据。 项目地址:https://github.com/ZiqiChai/simplified_eye_hand_calibration

最新推荐

recommend-type

HTML时间格式化工具及测试页面介绍

标题 "BoolStudio.github.io" 暗示这是一个与GitHub相关的在线资源,具体来说是与BoolStudio相关的网页地址。GitHub是一个著名的代码托管平台,它支持Git版本控制系统,允许用户在云端存储和共享代码。BoolStudio可能是GitHub上的一个用户或组织账户名称,而该页面可能是他们托管的项目或个人页面的入口。 描述中的信息包含了HTML元素和JavaScript代码片段。这段描述展示了一个测试页文件的部分代码,涉及到HTML的标题(title)和内嵌框架(iframe)的使用,以及JavaScript中Date对象的扩展功能。 从描述中我们可以分析出以下知识点: 1. HTML标题(Title): 在HTML中,`<title>`标签用于定义网页的标题,它会显示在浏览器的标题栏或页面的标签上。在描述中出现了`<title>现在时间</title>`,这表明网页的标题被设置为了“现在时间”。 2. 微软时间: 这可能指的是在网页中嵌入微软产品的日期和时间显示。尽管这部分内容在描述中被删除了,但微软时间通常与Windows操作系统的日期和时间显示相关联。 3. iframe元素: `<iframe>`标签定义了一个内嵌框架,可以在网页中嵌入另一个文档。在描述中出现的是`<iframe src"></iframe>`,这表示创建了一个空的iframe元素,其src属性为空,实际上没有嵌入任何内容。通常src属性会被设置为另一个HTML文档的URL,用来在当前页面中显示外部页面的内容。 4. JavaScript日期格式化: 描述中包含了一段JavaScript代码,这段代码扩展了Date对象的功能,允许它根据提供的格式字符串(fmt)返回格式化的日期和时间。例如,如果fmt是'y年M月d日 h时m分s秒',则该函数会按照这个格式返回当前日期和时间。 具体到代码实现,以下步骤展示了如何在JavaScript中扩展Date对象并格式化日期: - 首先创建了一个对象o,该对象包含日期和时间的不同部分,例如年(y)、月(M)、日(d)、时(h)、分(m)、秒(s)。 - 使用正则表达式检查格式字符串fmt中是否包含年份的占位符(y+),如果存在则将其替换为四位数的年份,不足部分用0补齐。 - 使用for...in循环遍历对象o中的每一个键值对,并使用正则表达式测试这些键(如年、月、日等)是否在格式字符串中存在。如果存在,则替换为相应的日期时间值。 这个知识点展示了在JavaScript中如何自定义对象的方法,以及如何使用正则表达式进行字符串的搜索和替换。 标签 "HTML" 表明这个文件主要涉及到超文本标记语言(HTML),这是构建网页内容的标准标记语言,它允许开发者使用标签来定义网页的结构和内容。HTML文件通常包含各种元素,如段落、链接、图片、表格和表单等。 压缩包子文件的文件名称列表中的 "BoolStudio.github.io-main" 可能指的是一个包含 "BoolStudio.github.io" 网站主要文件的压缩包。通常,网站项目会包含多个文件和资源,为了便于管理和分发,开发者会将这些文件打包成一个压缩文件。在本例中,"main" 可能表示该压缩包包含了网站的主要文件和代码。 通过对给定文件信息的分析,我们可以了解到网页设计和开发的相关知识点,特别是HTML文档结构、JavaScript对象和函数扩展以及如何在网站项目中组织文件。这些知识对于前端开发者来说是非常重要的,能够帮助他们创建更加动态和功能丰富的网页应用。
recommend-type

Elixir测试:从用例执行到覆盖率分析

### Elixir 测试:从用例执行到覆盖率分析 #### 1. 测试用例执行 在测试中,以 `Test` 结尾且包含 `use ExUnit` 的模块被视为测试用例。测试用例本质上是设置回调和测试的集合。测试用例的执行方式有两种:并发执行或顺序执行。使用 `async: true` 选项的测试用例将并发执行,其余的则按定义顺序(默认随机)顺序执行。 测试用例的执行流程如下: 1. 执行所有 `setup_all` 回调。 2. 执行所有测试及其特定的设置和拆卸回调。 `setup_all` 回调按定义顺序在同一进程中执行。在运行任何测试之前,测试用例将生成一个进程,在该进程中运行所有
recommend-type

Android Studio 时间延时

<think> 我们参考多个引用,总结在Android Studio中实现时间延时的方法。根据引用[1]和[2],我们知道有几种常见的延时方法,包括使用Handler的postDelayed方法、使用Timer和TimerTask以及使用Thread.sleep。引用[3]和[5]则展示了具体代码示例。 具体方法如下: 1. **使用Handler的postDelayed方法**(推荐在主线程中使用,避免直接操作UI线程的问题): ```java new Handler().postDelayed(new Runnable() { @Override
recommend-type

IMS Open Corpus Workbench:打造高效大型文本语料库管理工具

IMS Open Corpus Workbench(以下简称CWB)是一个强大的开源工具集,它专门用于管理和查询大型的、带有语言注释的文本语料库。这项工具有着广泛的应用领域,包括语言学研究、自然语言处理、人文科学研究等。 ### 标题知识点: #### 大型文本语料库的索引和查询工具 大型文本语料库指的是含有大量文本数据的数据库,其中包含的文本量通常以百万计。这些数据可能是书面文本、口语录音文字转写等形式。对于如此庞大的数据集,索引是必要的,它可以帮助研究者快速定位到感兴趣的片段,而查询工具则提供了从这些大量数据中提取特定信息的能力。 #### 开源 CWB作为一个开源工具,意味着其源代码对所有人开放,并且可以免费使用和修改。开源项目通常是由社区驱动,有着活跃的开发者和用户群体,不断对工具进行改进和拓展。这种模式促进了创新,并且有利于长期维护和升级。 ### 描述知识点: #### 管理和查询带有语言注释的文本 在语料库中,文本数据经常会被加上各种形式的语言注释,比如句法结构、词性标注、语义角色等。CWB支持管理这类富含语言信息的语料库,使其不仅仅保存原始文本信息,还整合了深层的语言知识。此外,CWB提供了多种查询语言注释数据的方式,使得用户可以针对特定的注释信息进行精确查询。 #### 核心组件:CQP(Corpus Query Processor) CQP是CWB中的核心组件,是一个高度灵活和高效的查询处理器。它支持在终端会话中交互式地使用,这为熟悉命令行界面的用户提供了一个强大的工具。同时,CQP也可以嵌入到其他程序中,比如Perl脚本,从而提供编程式的语料库访问方式。这为高级用户提供了一个强大的平台,可以编写复杂的查询,并将查询结果集成到其他程序中。 #### 基于Web的GUI CQPweb 除了命令行界面外,CWB还提供了一个基于Web的图形用户界面CQPweb,使得不熟悉命令行的用户也能够方便地使用CWB的强大功能。CQPweb通常允许用户通过网页直接构建查询,并展示查询结果,极大地降低了使用门槛。 ### 标签知识点: #### 开源软件 CWB作为开源软件,其主要特点和优势包括: - **社区支持**:开放源代码鼓励了全球开发者共同参与,提供错误修正、功能增强、新特性开发等。 - **定制化**:用户可以根据自己的需求对源代码进行修改,从而实现定制化的功能。 - **透明性**:源代码的开放确保了软件工作的透明性,用户可以清楚了解软件的工作原理和数据处理方式。 - **可靠性**:由于代码的公开性,很多用户和开发者可以共同审查代码,提高了软件的可靠性和安全性。 - **成本效益**:开源软件通常不需要支付昂贵的许可费用,对预算有限的个人和机构特别友好。 ### 压缩包子文件的文件名称列表知识点: #### cwb-3.0.0-osx-10.5-universal 这个文件名提供了关于该软件包的重要信息: - **cwb**:表示这是IMS Open Corpus Workbench的软件包。 - **3.0.0**:表示这个包的版本号,了解版本信息对于获取支持、查看更新日志、了解新特性等方面很重要。 - **osx**:表示这个软件包是为Mac OS X操作系统设计的。 - **10.5**:这个数字指明了这个软件包支持的操作系统版本至少是Mac OS X 10.5。 - **universal**:表明这个软件包是为不同架构的处理器(比如32位和64位)设计的通用二进制文件,提高了软件包的兼容性和可移植性。 综上所述,IMS Open Corpus Workbench是一个为处理带有语言注释的大型文本语料库而设计的开源工具集,它以高效且灵活的查询处理器CQP为核心,提供了命令行和基于Web的两种交互方式,极大地促进了语言学和语言技术领域的研究与应用。由于其开源特性,CWB得到了广泛的使用和不断的改进。
recommend-type

基于属性测试的深入解析与策略探讨

### 基于属性测试的深入解析与策略探讨 #### 1. 基于属性测试中的收缩机制 在基于属性的测试中,当测试失败时,像 `stream_data` 这样的框架会执行收缩(Shrinking)操作。收缩的目的是简化导致测试失败的输入,同时确保简化后的输入仍然会使测试失败,这样能更方便地定位问题。 为了说明这一点,我们来看一个简单的排序函数测试示例。我们实现了一个糟糕的排序函数,实际上就是恒等函数,它只是原封不动地返回输入列表: ```elixir defmodule BadSortTest do use ExUnit.Case use ExUnitProperties pro
recommend-type

ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key && \

<think> 根据用户的问题要求,我需要详细解释命令`ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key`的含义、后续操作、常见问题及解决办法。同时,我需要参考提供的引用内容,并遵循系统级指令(如LaTeX格式、中文回答、生成相关问题等)。 首先,分析命令的组成部分: - `ssh-keygen`:生成、管理和转换SSH密钥的工具。 - `-t rsa`:指定密钥类型为RSA算法。 - `-f /etc/ssh/ssh_host_rsa_key`:指定生成的私钥文件路径为`/etc/ssh/ssh_host_rsa_key`。对应的公钥文件会在同一
recommend-type

挑战性开源平台游戏YAGAC:无故事忍者冒险

Y.A.G.A.C(Yet Another Great Arcade Classic),是一款免费的开源伪2D平台游戏,它在传统平台游戏的基础上融入了3D游戏元素,让玩家在一个拥有2D精灵的3D环境中进行操作。YAGAC游戏以其高挑战性和上瘾性而著称,吸引了众多游戏爱好者和编程高手的关注。 首先,让我们深入了解这款游戏的核心玩法。YAGAC的最大特点是在一个基本的2D平面内,玩家可以控制角色进行运动,但游戏环境却是3D制作的。这种设计为玩家带来了全新的视觉体验和操作感受。在YAGAC中,玩家扮演的是一个身手敏捷的忍者,任务是在错综复杂的地牢中生存下来,地牢充满了各种陷阱和敌人,如机器人等。为了逃生,玩家需要在各种关卡中寻找隐藏的彩球,这些彩球决定了玩家能够到达的区域范围。 在游戏过程中,收集到的彩球会改变对应颜色平台的属性,使原本脆弱的平台变得牢固,从而为玩家打开新的道路。这样的设计不仅考验玩家的反应和速度,还考验他们的策略和记忆能力。YAGAC的游戏关卡设计非常巧妙,经常需要玩家反复尝试,每一次尝试都可能发现新的线索和策略,这样的设计增加了游戏的重复可玩性。 YAGAC使用的引擎在游戏流畅性方面表现出色,这也是游戏的一大强项。一款游戏引擎的强大与否直接关系到游戏体验的好坏,YAGAC的开发团队选择或者开发了一个能够高效处理3D图形和2D动作的引擎,确保了游戏在各种配置的计算机上都能保持良好的运行状态和响应速度。 接下来,我们来探讨YAGAC的开源属性。由于YAGAC是开源的,这意味着游戏的源代码是开放的,任何个人或组织都可以访问、修改并重新分发该软件。开源软件通常由社区维护,并且鼓励用户贡献代码,共同改进游戏。对于像YAGAC这样的游戏来说,开源可以吸引更多的开发者参与进来,共同完善游戏体验。玩家和开发者可以对游戏进行本地化、修改游戏机制,甚至是增加新的内容和关卡。 开源平台游戏的概念不仅限于提供免费的游戏体验,它还鼓励创新和协作。开源文化促进知识共享和技术进步,这在软件开发领域尤为重要。同时,玩家也可以从中学到编程知识,因为游戏的开源性质允许用户查看和学习游戏背后的代码。 最后,关于YAGAC的文件名称“yagac”,这很可能是游戏的主程序文件名或者主目录名。当玩家在计算机上进行下载和安装时,可能会遇到这样的文件名,识别这一点有助于玩家快速定位和管理游戏文件。 总的来说,Y.A.G.A.C.作为一款开源平台游戏,在游戏玩法设计、开源文化和3D游戏引擎的流畅性等方面,都显示出其独特的优势。游戏的挑战性和上瘾性,以及社区驱动的开发模式,都为游戏爱好者和开源爱好者提供了一个理想的游戏和学习平台。对于对游戏开发感兴趣的玩家来说,YAGAC无疑是一个研究和实践的良好起点。
recommend-type

状态化属性测试与测试数据随机化及测试生命周期解析

# 状态化属性测试与测试数据随机化及测试生命周期解析 ## 状态化属性测试 ### 状态化系统测试的引入 之前我们主要探讨了针对纯无状态函数的属性测试,这类函数接收输入并返回输出。然而,属性测试同样适用于有状态系统的测试。有状态系统是指那些会携带状态的系统,例如数据库。 在之前的示例中,我们仅使用属性测试来生成数据,然后将其输入到代码中并对结果进行断言。但对于有状态系统,情况有所不同:我们需要处理状态的设置,并仅在系统处于特定状态时执行某些操作。 ### 对有状态系统进行建模 我们可以利用属性测试框架生成随机数据的能力,为有状态系统生成随机命令。例如,若有状态系统是数据库,我们就能生成针
recommend-type

icpc英语字典

<think> 首先,用户的问题是:“我想查找icpc相关的英语字典 请问icpc英语专业字典”。用户想查找与ICPC(International Collegiate Programming Contest)相关的英语字典,特别是专业字典。 现在,回顾系统指令: - 所有行内数学表达式必须使用$...$格式。 - 独立公式使用$$...$$。 - LaTeX语法正确。 - 使用中文回答。 - 生成相关问题。 - 在回答中引用的段落末尾自然地添加引用标识。 - 回答结构清晰,帮助用户逐步解决问题。 - 保持真实可靠。 用户提供了几个引用: - 引用[1]:关于填字游戏和寻找变形词的程序。
recommend-type

NFT for SuiteScript 2.0 - 简化NetSuite脚本开发的框架

根据给定文件信息,我们可以提取出以下知识点: ### 标题知识点: 1. **NFT for SuiteScript 2.0** - 此标题表明存在一个名为NFT的工具包,它是专门为Oracle NetSuite的SuiteScript 2.0版本设计的。 - SuiteScript 2.0是一种用于定制和扩展NetSuite企业资源规划(ERP)系统的JavaScript编程语言。 - NFT可能代表“NetSuite FastTrack Toolkit”,这表明它旨在提供快速开发和部署NetSuite应用的能力。 ### 描述知识点: 1. **NetSuite快速通道工具包(NFT)** - NFT是一个为SuiteScript 2.x版本设计的框架。 - 它被描述为一个小型且功能强大的工具,用于编写可扩展的SuiteScript,简化脚本编写和维护过程。 - 此工具包强调了其易于使用的特点,这对于需要快速构建和迭代NetSuite定制解决方案的开发人员来说非常关键。 2. **类似于nsdal的ActiveRecord方法** - NFT提供了类似于nsdal(Netsuite数据访问层)的ActiveRecord方法,这暗示了一种面向对象的方式来处理NetSuite中的记录。 - 这种方法通常涉及使用预定义的模型来简化数据库记录的访问,操作和维护。 3. **预定义和可自定义的强类型** - 工具包支持强类型系统,这意味着在代码中定义的变量类型在编译时或运行时需要严格匹配。 - 这种类型系统有助于减少错误和提高代码的健壮性。 4. **子列表支持** - 工具包还支持对NetSuite记录的子列表进行操作,子列表是NetSuite中用于处理记录关联数据的辅助列表。 - 这允许开发人员更加高效地访问和修改由主记录派生的数据结构。 5. **高级搜索处理** - NFT提供了处理搜索结果为任意长的对象流的能力,这在处理大量数据时非常有用。 - 这可能涉及到流式处理技术,允许分批处理搜索结果而不是一次性加载到内存中。 6. **治理管理** - 治理管理功能可能涉及监控和脚本调度,确保脚本按照预定计划正确执行。 - 这对于管理大型NetSuite部署中脚本的生命周期至关重要。 7. **使用流行的JavaScript库** - NFT与immutablejs、lodash和momentjs等流行的JavaScript库集成。 - 这些库能够帮助处理不可变数据、数组操作和日期时间处理。 8. **API和TypeScript入门** - 开发者指南可能包括TypeScript的入门部分,提供工具包的使用示例和说明。 ### 标签知识点: 1. **JavaScript** - 由于NFT是用于SuiteScript 2.0,它必然与JavaScript紧密相关。 - 标签指出了此工具包使用的主要编程语言。 ### 压缩包子文件的文件名称列表: 1. **netsuite-fasttrack-toolkit-ss2-master** - 文件名称暗示了这是NFT工具包的源代码仓库。 - “master”通常表示这是主要的开发分支,或者它是发布版的代码。 整合以上信息点,可以得出NFT for SuiteScript 2.0是一个基于JavaScript的框架,它通过提供类似于ActiveRecord的方法,强类型的记录模型,以及集成流行的JavaScript库,简化了NetSuite应用的开发。它还着重于优化搜索处理和脚本治理,通过提供高级特性来促进开发效率和脚本管理,是开发NetSuite应用的强大工具。