From 1082c13eb1f7a75d52bdad8443c7baed75084b37 Mon Sep 17 00:00:00 2001 From: Kushal Kumar <59891164+K-Kumar-01@users.noreply.github.com> Date: Fri, 11 Jun 2021 23:13:40 +0530 Subject: [PATCH] chore: change require statement (#402) Signed-off-by: k-kumar-01 --- packages/markdown-docx/index.js | 3 ++- packages/markdown-docx/src/index.js | 17 ----------------- 2 files changed, 2 insertions(+), 18 deletions(-) delete mode 100644 packages/markdown-docx/src/index.js diff --git a/packages/markdown-docx/index.js b/packages/markdown-docx/index.js index 5891d29b..f01ce92e 100644 --- a/packages/markdown-docx/index.js +++ b/packages/markdown-docx/index.js @@ -20,4 +20,5 @@ */ module.exports.DocxTransformer = require('./lib/DocxTransformer'); -module.exports.OoxmlTransformer = require('./lib/OoxmlTransformer'); +module.exports.OoxmlTransformer = require('./lib/OOXMLTransformer'); +module.exports.CiceroMarkToOOXMLTransfomer = require('./lib/CiceroMarkToOOXML'); diff --git a/packages/markdown-docx/src/index.js b/packages/markdown-docx/src/index.js deleted file mode 100644 index ed611a3f..00000000 --- a/packages/markdown-docx/src/index.js +++ /dev/null @@ -1,17 +0,0 @@ -/* - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -'use strict'; - -module.exports.CiceroMarkToOOXMLTransfomer= require('./CiceroMarkToOOXML');