Skip to content

Commit

Permalink
Fix filename case because TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
knolleary committed Jun 11, 2021
1 parent 3c27f6d commit de2973e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node-red-debugger",
"version": "1.0.0",
"version": "1.0.1",
"description": "A flow debugger for Node-RED 2.x",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/flow-debugger.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Debugger,State} from "./lib/debugger"
import {PausedEvent} from "./lib/types"
import {Location} from "./lib/Location"
import {Location} from "./lib/location"

module.exports = (RED:any) => {

Expand Down
2 changes: 1 addition & 1 deletion src/lib/debugger.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as Location from "./Location"
import * as Location from "./location"
import { PausedEvent, MessageEvent } from "./types"
import { ReceiveEvent, SendEvent, EventCallback } from "../nr-types"
import { MessageQueue } from "./MessageQueue"
Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"target": "es6",
"moduleResolution": "node",
"sourceMap": true,
"outDir": "dist"
"outDir": "dist",
"forceConsistentCasingInFileNames": true
},
"lib": ["es2015"],
"include": ["./src/**/*"]
Expand Down

0 comments on commit de2973e

Please sign in to comment.