Skip to content

Commit d53681b

Browse files
committedDec 17, 2021
feat(api): migrate API to TypeScript and fix stale mappings and examples
1 parent 4ae8bc6 commit d53681b

File tree

124 files changed

+2667
-2484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

124 files changed

+2667
-2484
lines changed
 

‎api/misc/readmeData.js

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
/*
2-
* This file is part of the nivo project.
3-
*
4-
* (c) 2016 Raphaël Benitte
5-
*
6-
* For the full copyright and license information, please view the LICENSE
7-
* file that was distributed with this source code.
8-
*/
91
'use strict'
102

113
const _ = require('lodash')

‎api/nodemon.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"restartable": "rs",
3+
"ignore": ["node_modules/", "dist/", "coverage/"],
4+
"watch": ["src/"],
5+
"execMap": {
6+
"ts": "node -r ts-node/register"
7+
},
8+
"env": {
9+
"NODE_ENV": "development"
10+
},
11+
"ext": "js,json,ts"
12+
}

0 commit comments

Comments
 (0)
Please sign in to comment.