Skip to content

Commit 4404505

Browse files
authored
Merge pull request #121 from neonexus/master
Created `.ncurc` config file for `npm-check-updates` (aka 'ncu').
2 parents 37ffeef + 349edc6 commit 4404505

File tree

5 files changed

+118
-108
lines changed

5 files changed

+118
-108
lines changed

.ncurc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// This allows us to "lock" Chai into v4.
2+
3+
{
4+
"reject": ["chai"]
5+
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [v5.2.1](https://github.com/neonexus/sails-react-bootstrap-webpack/compare/v5.2.0...v5.2.1) (2024-01-24)
4+
### Features
5+
6+
* Created the [`.ncurc`](.ncurc) config file for [`npm-check-updates`](https://npmjs.com/package/npm-check-updates). Doing this to "lock" [Chai](https://npmjs.com/package/chai) into v4 on `ncu` calls.
7+
* Small tweak to [`local.js.sample`](config/local.js.sample).
8+
* Updated dependencies.
9+
310
## [v5.2.0](https://github.com/neonexus/sails-react-bootstrap-webpack/compare/v5.1.1...v5.2.0) (2024-01-11)
411
### Features
512

config/local.js.sample

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ module.exports = {
4040
dataEncryptionKeys: {
4141
// Run this to generate a new key: `npm run generate:dek`
4242
default: '{{DEK here}}' // NEVER STORE THIS FOR PRODUCTION PURPOSES!!!
43-
}
43+
},
44+
//validateOnBootstrap: false, // Disable datastores validation (when running as PRODUCTION).
45+
//enforceForeignKeys: false // Don't enforce foreign keys in the datastores (when running as PRODUCTION).
4446
},
4547

4648
// Configuration options for ngrok.js script.

0 commit comments

Comments
 (0)