We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"nested" works correctly and the css files are stored in the "css" folder dedicated to dist.
Current Status:
"nested" is not called and an error occurs as with "title". See screenshot (1) for details.
Also, "expanded" and "compact" work fine and are stored in the "css" folder dedicated to dist of css files.
Referring to other issues
I have installed fiber and sass-loader but they are failing.
Referenced sites
dcloudio/uni-ui#126
OS: Linux Ubuntu22.04 LTS
installed packages
source code:
gulpfile.js
'use strict' const gulp = require('gulp'); const sass = require('gulp-sass')(require('sass')); function buildStyles() { return gulp.src('./_src/sass_fld/**/*.scss') .pipe(sass({outputStyle: "nested"})).on('error',sass.logError) .pipe(gulp.dest('./css')); }; exports.build = buildStyles; function watch(){ gulp.watch('./_src/sass_fld/**/*.scss',buildStyles); } exports.watch = watch; exports.default = gulp.series(buildStyles,watch);
package.json
"devDependencies": { "@dcloudio/uni-ui": "^1.4.27", "fibers": "^5.0.3", "gulp": "^4.0.2", "gulp-sass": "^5.1.0", "sass": "^1.62.1", "sass-loader": "^13.2.2" }
Screenshots:
**outputStyle: “nested” or “compact” 1
tree -L 3 -I node_modules
. ├── _src │ ├── css │ │ └── style.css │ └── sass_fld │ └── style.scss ├── gulpfile.js ├── package-lock.json └── package.json
**outputStyle: “expanded”: or “compressed” 2
. ├── _src │ ├── css │ │ └── style.css │ └── sass_fld │ └── style.scss ├── css │ └── style.css ├── gulpfile.js ├── package-lock.json └── package.json
The text was updated successfully, but these errors were encountered:
This is working as intended. Past (now deprecated) Sass implementations supported a "nested" output style, but Dart Sass never has, and the JS API specifically only supports "expanded" and "compressed"
Sorry, something went wrong.
No branches or pull requests
Ideal Movement
"nested" works correctly and the css files are stored in the "css" folder dedicated to dist.
Current Status:
"nested" is not called and an error occurs as with "title". See screenshot (1) for details.
Also, "expanded" and "compact" work fine and are stored in the "css" folder dedicated to dist of css files.
What have done so far.
Referring to other issues
I have installed fiber and sass-loader but they are failing.
Referenced sites
dcloudio/uni-ui#126
Development environment
OS: Linux Ubuntu22.04 LTS
installed packages
source code:
gulpfile.js
package.json
Screenshots:
**outputStyle: “nested” or “compact” 1
.
├── _src
│ ├── css
│ │ └── style.css
│ └── sass_fld
│ └── style.scss
├── gulpfile.js
├── package-lock.json
└── package.json
**outputStyle: “expanded”: or “compressed” 2
.
├── _src
│ ├── css
│ │ └── style.css
│ └── sass_fld
│ └── style.scss
├── css
│ └── style.css
├── gulpfile.js
├── package-lock.json
└── package.json
The text was updated successfully, but these errors were encountered: