我遇到了VS2017的SSDT安装问题.
我已经运行了三次安装程序,一次是基本的,一次是在VS更新之后,最后是一些小的Windows更新.
所有3次日志都在同一点上跌跌撞撞,任何人都知道它正在尝试运行的是什么.(我正在使用Admin运行安装程序...).我在某个地方读到了类似的错误,它可能是SDK,但是我可以在本地运行,有任何不错的解决方法来安装它吗?
[29BC:A138][2017-09-26T09:28:00]i000: MainViewModel.OnPackageActionProgress: Percent completed: 50, Overall progress: 4
[1EC4:6DB0][2017-09-26T09:28:00]e000: Error 0x800703e9: Process returned error: 0x3e9
[1EC4:6DB0][2017-09-26T09:28:00]e000: Error 0x800703e9: Failed to execute EXE package.
[29BC:A138][2017-09-26T09:28:00]e000: Error 0x800703e9: Failed to configure per-machine EXE package.
[29BC:A138][2017-09-26T09:28:00]i000: MainViewModel.OnPackageAction: Install Completed for package SQL Server Analysis Services (id: Microsoft.DataTools.AnalysisServices)
[29BC:A138][2017-09-26T09:28:00]i319: Applied execute package: Microsoft.DataTools.AnalysisServices, result: 0x800703e9, restart: None
[29BC:A138][2017-09-26T09:28:00]e000: Error 0x800703e9: Failed to execute EXE package.
[1EC4:6DB0][2017-09-26T09:28:00]i351: Removing cached package: Microsoft.DataTools.AnalysisServices, from path: C:\ProgramData\Package Cache\9864EE5369359DB622D0234B6C6B7640B949140C\
[29BC:A138][2017-09-26T09:28:00]i000: MainViewModel.OnPackageActionProgress: Percent completed: 100, Overall progress: …Run Code Online (Sandbox Code Playgroud) failed-installation sql-server-data-tools visual-studio-2017
我决定node-sass从我的 gatsby 项目中删除并使用sass。我遵循了此处针对 v3提到的内容。我删除了node-sass,现在我有这些版本package.json:
"gatsby-plugin-sass": "3.1.0",
"sass": "1.32.5",
Run Code Online (Sandbox Code Playgroud)
我需要能够一次性为全局变量/mixins/函数编写一些 @use 或 @import 规则,以便我可以在所有 scss 文件中使用它们,因此我不必一遍又一遍地重复相同的规则。
有了node-sass这样的工作:
{
resolve: `gatsby-plugin-sass`,
options: {
includePaths: [`${__dirname}/src/styles`],
data: `@import "globals.scss";`,
},
},
Run Code Online (Sandbox Code Playgroud)
升级后,该includePaths属性有效但data无效,我从我的 scss 文件中收到有关“丢失”变量的错误:
{
resolve: `gatsby-plugin-sass`,
options: {
sassOptions: {
includePaths: [`${__dirname}/src/styles`],
data: `@use 'globals' as *;`,
},
},
},
Run Code Online (Sandbox Code Playgroud)
如果我@use 'globals' as *;在每个 scss 文件中插入规则,错误就会消失,一切都按预期工作,但我不想插入这一行并修改我所有的 sass 文件。
我很确定这个问题sass-loader与此声明(文档)有关,但我无法弄清楚如何使其工作以及为什么它以前有效:
?? …
It worked few weeks ago on different computer! :)
Trying to start new theme with Bootstrap-Sass on Drupal using nodejs, npm and laravel-mix and webpack. Never used it before, I just follow yt tutorial. Nodejs and npm have been installed and with that laravel-mix have been added.
Inside the theme folder following files have been created:
webpack.mix.js - created with same content as last time to convert sass to css.
package.json - created automatically and 'dev' command added manually as …
当我尝试在 laravel 版本 8 上编译引导脚手架时,会出现以下错误
node_modules\bootstrap\scss\mixins\_grid.scss 67:16 row-cols()
node_modules\bootstrap\scss\mixins\_grid-framework.scss 43:13 @content
node_modules\bootstrap\scss\mixins\_breakpoints.scss 65:5 media-breakpoint-up()
node_modules\bootstrap\scss\mixins\_grid-framework.scss 32:5 make-grid-columns()
node_modules\bootstrap\scss\_grid.scss 72:3 @import
node_modules\bootstrap\scss\bootstrap.scss 16:9 @import
resources\sass\app.scss 8:9 root stylesheet
DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
Recommendation: math.div(100%, $count)
More info and automated migrator: https://sass-lang.com/d/slash-div
?
66 ? flex: 0 0 100% / $count;
? ^^^^^^^^^^^^^
?
node_modules\bootstrap\scss\mixins\_grid.scss 66:15 row-cols()
node_modules\bootstrap\scss\mixins\_grid-framework.scss 43:13 @content
node_modules\bootstrap\scss\mixins\_breakpoints.scss 65:5 media-breakpoint-up()
node_modules\bootstrap\scss\mixins\_grid-framework.scss 32:5 make-grid-columns()
node_modules\bootstrap\scss\_grid.scss 72:3 @import
node_modules\bootstrap\scss\bootstrap.scss …Run Code Online (Sandbox Code Playgroud)