Skip to content

Commit 899d07c

Browse files
Merge pull request #31 from cssninjaStudio/@next
merging @next into master
2 parents 10da510 + e6f023f commit 899d07c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+8166
-31875
lines changed

gulpfile.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import imagemin from "gulp-imagemin";
66
import sourcemaps from "gulp-sourcemaps";
77
import autoprefixer from "gulp-autoprefixer";
88
import panini from "panini";
9-
109
import sassCompiler from "sass";
1110
import del from "del";
1211
import browserify from "browserify";
@@ -33,6 +32,14 @@ function livePreview(done) {
3332
done();
3433
}
3534

35+
//Copy latest installed Bulma
36+
function setupBulma() {
37+
console.log("\n\t" + logSymbols.info, "Installing Bulma Files..\n");
38+
return src([nodepath + "bulma/*.sass", nodepath + "bulma/**/*.sass"]).pipe(
39+
dest("src/sass/")
40+
);
41+
}
42+
3643
//Compile Scss code
3744
function compileSCSS() {
3845
console.log(logSymbols.info, "Compiling App SCSS..");
@@ -195,3 +202,7 @@ export default (done) => {
195202
)();
196203
done();
197204
};
205+
206+
export const setup = () => {
207+
series(setupBulma);
208+
};

0 commit comments

Comments
 (0)