From c61b9ef40257aa9fc6ecd959025e08e80a46a628 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabrice=20PENHO=C3=8BT?= Date: Mon, 18 Oct 2021 11:40:21 +0200 Subject: [PATCH] Renommage fichier classe ParserForJSON --- src/{freeDatas2HTMLParserForJSON.ts => ParserForJSON.ts} | 0 src/freeDatas2HTML.ts | 2 +- tests/parserForJSONSpec.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{freeDatas2HTMLParserForJSON.ts => ParserForJSON.ts} (100%) diff --git a/src/freeDatas2HTMLParserForJSON.ts b/src/ParserForJSON.ts similarity index 100% rename from src/freeDatas2HTMLParserForJSON.ts rename to src/ParserForJSON.ts diff --git a/src/freeDatas2HTML.ts b/src/freeDatas2HTML.ts index 29c2d02..edfdd0d 100644 --- a/src/freeDatas2HTML.ts +++ b/src/freeDatas2HTML.ts @@ -5,7 +5,7 @@ import { Counter, Datas, DatasRenders, DOMElement, Paginations, Parsers, ParseEr import { Pagination} from "./freeDatas2HTMLPagination"; import { ParserForCSV} from "./ParserForCSV"; import { ParserForHTML} from "./freeDatas2HTMLParserForHTML"; -import { ParserForJSON} from "./freeDatas2HTMLParserForJSON"; +import { ParserForJSON} from "./ParserForJSON"; import { Render} from "./freeDatas2HTMLRender"; import { Selector } from "./freeDatas2HTMLSelector"; import { SortingField } from "./freeDatas2HTMLSortingField"; diff --git a/tests/parserForJSONSpec.ts b/tests/parserForJSONSpec.ts index 4418401..981c82c 100644 --- a/tests/parserForJSONSpec.ts +++ b/tests/parserForJSONSpec.ts @@ -1,4 +1,4 @@ -import { ParserForJSON as Parser } from "../src/freeDatas2HTMLParserForJSON"; +import { ParserForJSON as Parser } from "../src/ParserForJSON"; const errors=require("../src/errors.js"); describe("Tests du parseur de JSON", () =>