Skip to content

Commit

Permalink
Release v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
vpmedia committed Nov 5, 2023
1 parent afb9c42 commit 58fccd7
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## 1.0.4

- Reverted package module exports to main

## 1.0.3

- Added deep object value getter / setter helpers
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# @vpmedia/simplify

[![npm version](https://badge.fury.io/js/@vpmedia%2Fsimplify.svg?v=1.0.3)](https://badge.fury.io/js/@vpmedia%2Fsimplify)
[![npm version](https://badge.fury.io/js/@vpmedia%2Fsimplify.svg?v=1.0.4)](https://badge.fury.io/js/@vpmedia%2Fsimplify)
[![Node.js CI](https://github.com/vpmedia/simplify/actions/workflows/node.js.yml/badge.svg)](https://github.com/vpmedia/simplify/actions/workflows/node.js.yml)

@vpmedia/simplify TBD
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vpmedia/simplify",
"version": "1.0.3",
"version": "1.0.4",
"description": "@vpmedia/simplify",
"author": "Andras Csizmadia <[email protected]> (www.vpmedia.hu)",
"license": "MIT",
Expand All @@ -15,7 +15,7 @@
"keywords": [
"utils"
],
"exports": "./src/index.js",
"main": "./src/index.js",
"types": "./types/index.d.ts",
"type": "module",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion types/util/getObjValueByPath.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Get object value by path
* Get object value by path.
* @param {object} obj - TBD.
* @param {string} path - TBD.
* @returns {*} TBD.
Expand Down
2 changes: 1 addition & 1 deletion types/util/setObjValueByPath.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Get object value by path
* Get object value by path.
* @param {object} obj - TBD.
* @param {string} path - TBD.
* @param {*} value - TBD.
Expand Down

0 comments on commit 58fccd7

Please sign in to comment.