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

Commit

Permalink
v9.2.0 - Fix load order issue (#392)
Browse files Browse the repository at this point in the history
* v9.2.0 - Fix ordering issue.

* v9.2.0 - Remove local link.
  • Loading branch information
kevinrodrigues authored Aug 25, 2022
1 parent 9d682c2 commit 912f0cc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ Future Todo List
- Make typography and utility classes silent extenders (so that they can be extended by components without importing all utility classes).
- Update to use latest v2 PIE design tokens

v9.2.0
------------------------------
*August 24, 2022*

### Fixed
- Ordering issue to prevent use & forward from throwing load order errors in consuming apps when using sass `with` syntax.


v9.1.0
------------------------------
Expand Down
4 changes: 2 additions & 2 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": "9.1.0",
"version": "9.2.0",
"main": "dist/js/index.js",
"files": [
"dist/js",
Expand Down Expand Up @@ -42,12 +42,12 @@
"@babel/eslint-parser": "7.18.9",
"@babel/preset-env": "7.18.10",
"@justeat/browserslist-config-fozzie": "2.0.0",
"caniuse-lite": "1.0.30001374",
"@justeat/eslint-config-fozzie": "5.1.0",
"@justeat/f-dom": "1.1.0",
"@justeat/f-logger": "0.8.1",
"@justeat/js-test-buddy": "0.4.1",
"@justeat/stylelint-config-fozzie": "2.3.0",
"caniuse-lite": "1.0.30001374",
"concurrently": "7.3.0",
"coveralls": "3.1.1",
"danger": "11.1.1",
Expand Down
4 changes: 1 addition & 3 deletions src/scss/_dependencies.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,13 @@
// but we should not need them if autoprefixer is being used
// See mixins/css3.scss for the full list

// Including helper modules
@forward 'tools/index'; // imports Fozzie SCSS helper functions and mixins

// =================================
// Core variables
// =================================
// The colour variables are imported from https://www.npmjs.com/package/@justeat/pie-design-tokens
@forward '@justeat/pie-design-tokens/dist/jet';
@forward 'settings/variables';
@forward 'tools/index'; // imports Fozzie SCSS helper functions and mixins
@forward 'settings/include-media';
@forward 'tools/helpers/breakpoints'; // breakpoint helper

Expand Down
2 changes: 1 addition & 1 deletion src/scss/tools/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
// In addition you can import optional helpers such as breakpoints and code-highlighting such as:
// @import '/helpers/breakpoints'

@forward 'mixins';
@forward 'functions';
@forward 'mixins';

0 comments on commit 912f0cc

Please sign in to comment.