Mar 18, 2021 12:47 PM - edited Mar 18, 2021 12:48 PM
Hello, is it still not possible to upload SASS-Files to the HubSpot-Designer (also via HubSpot CLI)? I would like to host the CSS and the SCSS Files on HubSpot. Thank you so much and best regards. Pascal
Solved! Go to Solution.
Mar 19, 2021 3:16 PM
Hi @peesen , Not at this time.
I would recommend using a version control system and host your files on GitHub or the like.
Mar 21, 2021 9:33 PM - edited Aug 31, 2021 7:43 PM
My team and I do it like this.
We use the HubSpot CLI to work locally. Keep all our SCSS as any other local project.
We then run it through gulp.
const gulp = require('gulp');
const sass = require('gulp-sass');
const autoprefixer = require('gulp-autoprefixer');
const paths = {
src: './scss/main.scss',
dest: './PATH/css'
}
function compile() {
return gulp.src(paths.src)
.pipe(sass().on('error', sass.logError))
.pipe(autoprefixer())
.pipe(gulp.dest(paths.dest));
}
function watchForChanges() {
gulp.watch('./scss/*/**.scss', compile);
}
exports.compile = compile;
exports.watch = watchForChanges;
Then you can import your main.css.
If you want to do individual modules. Create a modules folder in SCSS/SASS and don't put it as a partial. Then change the paths on your gulp file. Let it create a your-module.css on compile. Then require it in your module html.
<div> YOUR MODULE HTML </div>
{{ require_css(get_asset_url("PATH/your-module.css")) }}
Then we keep our whole repository on Github for version control.
Hopefully that helps!
Joshua Todd | CEO of Pixl Labs
www.pixllabs.io
Mar 21, 2021 9:33 PM - edited Aug 31, 2021 7:43 PM
My team and I do it like this.
We use the HubSpot CLI to work locally. Keep all our SCSS as any other local project.
We then run it through gulp.
const gulp = require('gulp');
const sass = require('gulp-sass');
const autoprefixer = require('gulp-autoprefixer');
const paths = {
src: './scss/main.scss',
dest: './PATH/css'
}
function compile() {
return gulp.src(paths.src)
.pipe(sass().on('error', sass.logError))
.pipe(autoprefixer())
.pipe(gulp.dest(paths.dest));
}
function watchForChanges() {
gulp.watch('./scss/*/**.scss', compile);
}
exports.compile = compile;
exports.watch = watchForChanges;
Then you can import your main.css.
If you want to do individual modules. Create a modules folder in SCSS/SASS and don't put it as a partial. Then change the paths on your gulp file. Let it create a your-module.css on compile. Then require it in your module html.
<div> YOUR MODULE HTML </div>
{{ require_css(get_asset_url("PATH/your-module.css")) }}
Then we keep our whole repository on Github for version control.
Hopefully that helps!
Joshua Todd | CEO of Pixl Labs
www.pixllabs.io
Mar 24, 2021 9:50 AM
@josh_dev Hey Josh, thank you so much. We are a group of developers and now changed from the HubSpot Designers to local Development. Now we have the problem, that we can not work like this with SASS because the local SASS-Files are always different. How can we manage, that we all have the same SASS Files all the time in the team? I started thesting with GitHub Desktop.
Mar 19, 2021 3:16 PM
Hi @peesen , Not at this time.
I would recommend using a version control system and host your files on GitHub or the like.