Skip to content

Commit

Permalink
Version 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoinel committed Feb 16, 2024
1 parent a2f902a commit c1bf47a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ If you are using Webpack to compile your code and you are using it in production
When modifying or creating JS helpers, dont forget to generate declaration files of your helpers so these can be imported into TS projects.

Please run : `npm run types`
This will add declaration files at the same place your JS files.

This will add the declaration files at the same place of your JS files.

## Major revision notes:

Expand Down
7 changes: 6 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

# 3.3
# 3.3.1

## Updated
* ios100vhFix : add back export

# 3.3.0

## Fixed
* Add Typescript support
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@area17/a17-helpers",
"version": "3.3.0",
"version": "3.3.1",
"type": "module",
"description": "A js helper package",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/ios100vhFix.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* ios100vhFix : Create a CSS variable --vh representing 1% of the window height to fix the 100vh issue on iOS
*/
const ios100vhFix = function () {
export const ios100vhFix = function () {
// Doc: https://github.com/area17/js-helpers/wiki/ios100vhFix
if(typeof window === 'undefined') return;

Expand Down

0 comments on commit c1bf47a

Please sign in to comment.