Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor updates. #11

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [v4.2.4](https://github.com/neonexus/fixted/compare/v4.2.3...v4.2.4) (2023-12-14)

### Features

* Minor README link update.
* Updated dependencies.

## [v4.2.3](https://github.com/neonexus/fixted/compare/v4.2.2...v4.2.3) (2023-11-02)

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ npm i --save-dev fixted

## Real-World Usage Example

See [neonexus/sails-react-bootstrap-webpack](https://github.com/neonexus/sails-react-bootstrap-webpack/blob/release/test/startTests.js#L145) for an example of automated tests that depend on fake data.
See [neonexus/sails-react-bootstrap-webpack](https://github.com/neonexus/sails-react-bootstrap-webpack/blob/release/test/startTests.js#L153) for an example of automated tests that depend on fake data.

## Usage

Expand Down
62 changes: 31 additions & 31 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fixted",
"version": "4.2.3",
"version": "4.2.4",
"description": "A simple way to populate Sails.js v1 models with data fixtures for testing purposes. Originally based on Barrels, by Ruslan Bredikhin.",
"keywords": [
"sails",
Expand All @@ -14,12 +14,12 @@
"data"
],
"dependencies": {
"async": "~3.2.4",
"async": "~3.2.5",
"lodash": "~4.17.21"
},
"devDependencies": {
"chai": "~4.3.10",
"eslint": "~8.52.0",
"eslint": "~8.55.0",
"mocha": "~10.2.0",
"pre-commit": "~1.2.2",
"sails": "~1.5.8",
Expand All @@ -44,13 +44,13 @@
"test": "npm run lint && NODE_ENV=test PORT=1338 mocha -R spec --ui bdd --timeout 5000 \"test/**/*.test.js\" && echo '✔ Done ✔\n'"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git://github.com/neonexus/fixted.git"
"url": "https://github.com/neonexus/fixted.git"
},
"homepage": "https://github.com/neonexus/fixted",
"author": {
"name": "NeoNexus DeMortis",
"email": "[email protected]"
Expand Down Expand Up @@ -81,6 +81,6 @@
],
"license": "MIT",
"engines": {
"node": ">=18.15"
"node": ">=20.10"
}
}