Skip to content

Commit

Permalink
fix wrong case of import
Browse files Browse the repository at this point in the history
  • Loading branch information
lpaladin committed Dec 24, 2018
1 parent 74e7836 commit a61c8ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "json-inline-doc",
"version": "2.0.0",
"version": "2.0.1",
"description": "Add inline comments on stringified JSON (JSONC), or generate from JSON schema",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CustomCommentWriter } from './CustomCommentWriter';
import { JSONCommentWriterBase } from './JSONCommentWriterBase';
import { CustomCommentWriter } from './customCommentWriter';
import { JSONCommentWriterBase } from './jsonCommentWriterBase';
import { SchemaMetadataWriter } from './schemaMetadataWriter';

export { CustomCommentWriter, SchemaMetadataWriter, JSONCommentWriterBase };

0 comments on commit a61c8ff

Please sign in to comment.