Skip to content

Commit

Permalink
Merge pull request #6 from neonexus/master
Browse files Browse the repository at this point in the history
Added `peerDependencies` to `package.json`. Updated dependencies.
  • Loading branch information
neonexus authored Apr 9, 2023
2 parents a1c1278 + f2d15e6 commit f7e5053
Show file tree
Hide file tree
Showing 4 changed files with 97 additions and 80 deletions.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
dist: jammy
language: node_js
node_js: '16'
node_js: node
cache:
directories: [ node_modules ]
install: npm install
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v4.2.0](https://github.com/neonexus/fixted/compare/v4.1.0...v4.2.0) (2023-04-08)

### Features

* Added `peerDependencies` to `package.json`. This is a helper for Sails, might as well tell NPM as much.
* Updated dependencies.
* Updated Travis Node version.

## [v4.1.0](https://github.com/neonexus/fixted/compare/v4.0.1...v4.1.0) (2023-02-19)

### Features
Expand Down
151 changes: 76 additions & 75 deletions package-lock.json

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

12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fixted",
"version": "4.1.0",
"version": "4.2.0",
"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 @@ -17,13 +17,16 @@
},
"devDependencies": {
"chai": "~4.3.7",
"eslint": "~8.34.0",
"eslint": "~8.38.0",
"mocha": "~10.2.0",
"pre-commit": "~1.2.2",
"sails": "~1.5.4",
"sails-disk": "~2.1.2",
"sails-hook-orm": "~4.0.2"
},
"peerDependencies": {
"sails": "1.x"
},
"funding": [
{
"type": "github",
Expand All @@ -33,9 +36,10 @@
"main": "index.js",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"test": "npm run lint && NODE_ENV=test mocha -R spec --ui bdd --timeout 5000 \"test/**/*.test.js\" && echo '✔ Done ✔\n'"
"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": {
Expand Down Expand Up @@ -72,6 +76,6 @@
],
"license": "MIT",
"engines": {
"node": ">=18.14"
"node": ">=18.15"
}
}

0 comments on commit f7e5053

Please sign in to comment.