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

Commit

Permalink
v1.1.1 (#2)
Browse files Browse the repository at this point in the history
* Added new animation & updated gulpfile and package

* Updated .travis.yml

* Fixes on travis.yml

Co-authored-by: Release Bot <release@sebastienrousseau.co.uk>
  • Loading branch information
sebastienrousseau and Release Bot authored Apr 22, 2021
1 parent cfddcc8 commit dea9d45
Show file tree
Hide file tree
Showing 14 changed files with 263 additions and 53 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ cache:
directories:
- node_modules
node_js:
- 6
- 'node'
before_script:
- npm install -g gulp
- node --version
- npm install -g gulp-cli
script: gulp
notifications:
email: false
Expand Down Expand Up @@ -46,7 +47,7 @@ deploy:
on:
# all_branches: true
# tags: true
repo: reedia/skeletonic
repo: sebastienrousseau/skeletonic
# - provider: npm
# email: $NPM_EMAIL
# api_key: $NPM_TOKEN
Expand Down
182 changes: 177 additions & 5 deletions dist/skeletonic-animations.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/skeletonic-animations.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/skeletonic-animations.min.css

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/skeletonic-colours.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/skeletonic-colours.css.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/skeletonic-fonts.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions dist/skeletonic-pattern.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions dist/skeletonic.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/skeletonic.css.map

Large diffs are not rendered by default.

18 changes: 13 additions & 5 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,17 @@ gulp.task('watch', function () {

// Run in order:
// gulp build-colours && gulp build-css && gulp build-pattern && gulp build-animations && gulp build-fonts && gulp rename && gulp clean:tmp
// gulp build-colours
// gulp build-css
// gulp build-pattern
// gulp build-animations
// gulp build-fonts
// gulp rename
// gulp clean:tmp

gulp.task('default', gulp.series('build-css'));
gulp.task('pattern', gulp.series('build-pattern'));
gulp.task('colours', gulp.series('build-colours'));
gulp.task('animations', gulp.series('build-animations'));
gulp.task('fonts', gulp.series('build-fonts'));

gulp.task('default', ['build-css']);
gulp.task('pattern', ['build-pattern']);
gulp.task('colours', ['build-colours']);
gulp.task('animations', ['build-animations']);
gulp.task('fonts', ['build-fonts']);
Loading

0 comments on commit dea9d45

Please sign in to comment.