-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathautoreload.js
More file actions
28 lines (24 loc) · 673 Bytes
/
autoreload.js
File metadata and controls
28 lines (24 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* This is the config file for the `sails-hook-autoreload` package.
* THIS IS NOT PRE-INSTALLED! You must manually install it: npm i sails-hook-autoreload --save-dev
*
* When you make changes to your API files, the hook will reload the server (without re-running the bootstrap).
*
* For more info, see: https://www.npmjs.com/package/sails-hook-autoreload
*/
module.exports.autoreload = {
active: true,
dirs: [
'api/controllers',
'api/helpers',
'api/hooks',
'api/models',
'api/policies',
'api/responses',
'config'
],
ignored: [
'**.md'
],
overrideMigrateSetting: false
};