Skip to content
This repository has been archived by the owner on Nov 29, 2022. It is now read-only.

Commit

Permalink
v0.13.0 - Publish only src/ to npm (#28)
Browse files Browse the repository at this point in the history
* Publish only src/

* 0.13.0
  • Loading branch information
howard-wallis authored and DamianMullins committed Aug 31, 2017
1 parent 7ca555e commit 0ced84c
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 6 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,28 @@
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

v0.13.0
------------------------------
*August 31, 2017*

### Changed
- Publish only `src/` to npm.
- Specify icons as contained in `src/` rather than `dist/`

v0.12.0
------------------------------
*August 30, 2017*

### Added
- Base button class `o-btn`
- Base button class `o-btn`
- A range of button colour and design modifiers
- Toggle button component
- Base icon class `c-icon`
- Icon size modifiers
- Tick icon classes
- Operator icon classes (plus & minus)
- SVG files for tick and operator icons
- Assets manifest in package.json, specifying the icons to be copied into
- Assets manifest in package.json, specifying the icons to be copied

### Changed
- Updated `gulp-build-fozzie`
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@justeat/fozzie",
"title": "Fozzie – Just Eat UI Web Framework",
"description": "UI Web Framework for the Just Eat Global Platform",
"version": "0.12.0",
"version": "0.13.0",
"homepage": "https://github.com/justeat/fozzie",
"contributors": [
"Ashley Nolan <[email protected]> (https://ashleynolan.co.uk)",
Expand All @@ -28,7 +28,7 @@
},
"dependencies": {
"@justeat/fozzie-colour-palette": "^0.6.0",
"@justeat/gulp-build-fozzie": "^5.5.2",
"@justeat/gulp-build-fozzie": "^5.5.3",
"@kickoff/utils.scss": "^2.1.1",
"babel-preset-es2015": "^6.24.1",
"gulp": "^3.9.1",
Expand Down Expand Up @@ -75,8 +75,11 @@
"src/js"
]
},
"files": [
"src"
],
"assets": {
"root": "dist/",
"root": "src/",
"glob": "img/**/*.svg"
}
}
60 changes: 59 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
dependencies:
"@justeat/gulp-build-fozzie" "^5.3.1"

"@justeat/gulp-build-fozzie@^5.3.1", "@justeat/gulp-build-fozzie@^5.5.2":
"@justeat/gulp-build-fozzie@^5.3.1":
version "5.5.2"
resolved "https://registry.yarnpkg.com/@justeat/gulp-build-fozzie/-/gulp-build-fozzie-5.5.2.tgz#a7b7f4a944d60fb00f272f3ba41bae82c46d8dcd"
dependencies:
Expand Down Expand Up @@ -158,6 +158,64 @@
vinyl-buffer "^1.0.0"
vinyl-source-stream "^1.1.0"

"@justeat/gulp-build-fozzie@^5.5.3":
version "5.5.3"
resolved "https://registry.yarnpkg.com/@justeat/gulp-build-fozzie/-/gulp-build-fozzie-5.5.3.tgz#ba67932d9abb1179452de49ba504b2c24847d8f1"
dependencies:
"@justeat/eslint-config-fozzie" "^1.2.0"
"@justeat/f-copy-assets" "^0.3.0"
"@justeat/stylelint-config-fozzie" "^1.1.0"
assemble "^0.24.3"
autoprefixer "^7.1.2"
babelify "^7.3.0"
browser-sync "^2.18.13"
browserify "^14.3.0"
cssnano "^3.10.0"
del "^3.0.0"
eslint "^4.3.0"
eslint-plugin-import "^2.7.0"
eslint-plugin-jest "^20.0.0"
event-stream "^3.3.4"
exorcist "^0.4.0"
eyeglass "^1.2.1"
filesizegzip "^2.0.0"
gulp "^3.9.1"
gulp-cached "^1.1.1"
gulp-changed "^3.1.0"
gulp-eslint "^4.0.0"
gulp-extname "^0.2.2"
gulp-filenames "^4.0.1"
gulp-gh-pages "^0.5.4"
gulp-if "^2.0.2"
gulp-imagemin "^3.2.0"
gulp-newer "^1.3.0"
gulp-plumber "^1.1.0"
gulp-postcss "^7.0.0"
gulp-rename "^1.2.2"
gulp-rev "^8.0.0"
gulp-sass "^3.1.0"
gulp-size "^2.1.0"
gulp-sourcemaps "^2.6.0"
gulp-strip-debug "^1.1.0"
gulp-svgmin "^1.2.4"
gulp-svgstore "^6.1.0"
gulp-tap "^1.0.1"
gulp-uglify "^3.0.0"
gulp-util "^3.0.8"
handlebars-helpers "^0.9.6"
helper-markdown "^1.0.0"
helper-md "^0.2.2"
jest-cli "^20.0.0"
postcss-assets "^4.2.0"
postcss-reporter "^5.0.0"
postcss-scss "^1.0.2"
require-dir "^0.3.1"
run-sequence "^2.1.0"
stylelint "^8.0.0"
sw-precache "^5.1.1"
vinyl-buffer "^1.0.0"
vinyl-source-stream "^1.1.0"

"@justeat/stylelint-config-fozzie@^1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@justeat/stylelint-config-fozzie/-/stylelint-config-fozzie-1.1.0.tgz#be5f17a2336f0d42ff5f45de0bf6bf88c2d4b825"
Expand Down

0 comments on commit 0ced84c

Please sign in to comment.