Skip to content
This repository was archived by the owner on Apr 14, 2023. It is now read-only.

Releases: carloscuesta/starterkit

starterkit 1.0.9

18 Jun 15:15
1686cc7

Choose a tag to compare

:bug: Fix critical task

Closes #57

starterkit 1.0.8

12 Jul 16:55

Choose a tag to compare

Updated dependencies.
Refactored gulpfile.js
Renamed jade to pug.

starterkit 1.0.7

21 Apr 14:58

Choose a tag to compare

Dependencies

Update dependencies.

- browser-sync@2.11
+ browser-sync2.12.3
- critical@0.7.0
+ critical@0.7.2
- gulp-cssimport@2.1.2
+ gulp-cssimport@3.0.2
- gulp-cssnano@2.1.1
+ gulp-cssnano@2.1.2
- gulp-sass@2.2.0
+ gulp-sass@2.3.0
- gulp-sourcemaps@1.6.0
+ gulp-sourcemaps@2.0.0-alpha
- gulp-uglify@1.5.2
+ gulp-uglify@1.5.3
- gulp-uncss@1.0.4
+ gulp-uncss@1.0.5

starterkit 1.0.6

22 Feb 11:39

Choose a tag to compare

Templates styles and website

Modified styles and templates to create a new and a better website and the web boilerplate of starterkit - starterkit website

starterkit-website

Package.json

Removed gulp-minify-css for gulp-cssnano as minify-css is deprecated.

- gulp-minify-css
+ gulp-cssnano

See changelog

starterkit 1.0.5

09 Feb 21:10

Choose a tag to compare

Package.json

Updated all the dependencies.

License

Updated license.

Commits Changelog

starterkit 1.0.4

06 Nov 14:26

Choose a tag to compare

Package.json

Created npm run dev, build, optimize and deploy to allow users list the gulp tasks without opening the file and run the tasks with the npm run scriptname.

"scripts": {
    "dev": "gulp",
    "build": "gulp build",
    "optimize": "gulp optimize",
    "deploy": "gulp deploy"
  },

Update dependencies to the last version.

gulp-babel@6.0.0->6.1.1
browser-sync@2.9.11->2.9.12
gulp-cssimport@2.1.1->2.1.1-b
gulp-sass@2.0.4 -> 2.1.0
gulp-imagemin@2.3.0->2.4.0

starterkit 1.0.3

17 Oct 09:27

Choose a tag to compare

Gulp

gulp critical: This task extracts & inlines critical-path (above-the-fold) CSS from HTML using critical.

gulp.task('critical', function () {
    return gulp.src(routes.files.htmlFiles)
        .pipe(critical({
            base: baseDirs.dist,
            inline: true,
            html: routes.files.htmlFiles,
            css: routes.files.styleCss,
            ignore: ['@font-face',/url\(/],
            width: 1300,
            height: 900
        }))
        .pipe(plumber({
            errorHandler: notify.onError({
                title: "Error: Critical failed.",
                message:"<%= error.message %>"
            })
        }))
        .pipe(gulp.dest(baseDirs.dist))
        .pipe(notify({
            title: 'Critical Path completed!',
            message: 'css critical path done!'
        }));
});

Added critical to optimize task.

Created a baseDirs object to define the baseDirs of the project.

var baseDirs = {
    dist:'dist/',
    src:'src/',
    assets: 'dist/assets/'
};
Package

Updated dependencies:

  • gulp-autoprefixer@3.0.2 -> 3.1.0
  • gulp babel@5.2.1 -> 5.3.0

starterkit 1.0.2

10 Oct 16:48

Choose a tag to compare

Fixed image-min notification, update dependencies.

starterkit 1.0.1

06 Oct 16:12

Choose a tag to compare

Updated devDependencies, modified the gh-page, updated description of package.json.

starterkit 1.0.0

27 Sep 13:25

Choose a tag to compare

First stable release of the starterkit.

http://starterkit.carloscuesta.me