Skip to content

Commit

Permalink
remove dupe files
Browse files Browse the repository at this point in the history
  • Loading branch information
brianorwhatever committed Sep 13, 2023
1 parent cc592d5 commit 20f9cde
Show file tree
Hide file tree
Showing 2,593 changed files with 1,937,777 additions and 492 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

## Overview

The **Machine Readable Glossary Tool (MRGT)** generates a Machine Readable Glossary (MRG) for each of the versions of the terminology that are maintained with that scope by reading the SAF. There is more information about here:
- [overview of the TEv2 tools](https://tno-terminology-design.github.io/tev2-specifications/docs/tev2-overview) of which the TRRT is a part.
The **Machine Readable Glossary Tool (MRGT)** generates a Machine Readable Glossary (MRG) for each of the versions of the terminology that are maintained with that scope by reading the SAF. There is more information about the MRGT in the [overview of the TEv2 tools](https://tno-terminology-design.github.io/tev2-specifications/docs/tev2-overview) of which the MRGT is a part.

## Installation

Expand Down
18 changes: 0 additions & 18 deletions __tests__/.github/workflows/build-test.yml

This file was deleted.

55 changes: 0 additions & 55 deletions __tests__/.github/workflows/docs-deploy.yml

This file was deleted.

22 changes: 0 additions & 22 deletions __tests__/.github/workflows/publish-github.yml

This file was deleted.

18 changes: 0 additions & 18 deletions __tests__/.github/workflows/publish-npm.yml

This file was deleted.

29 changes: 0 additions & 29 deletions __tests__/.github/workflows/test-docs-deploy.yml

This file was deleted.

99 changes: 0 additions & 99 deletions __tests__/.gitignore

This file was deleted.

37 changes: 0 additions & 37 deletions __tests__/README.md

This file was deleted.

4 changes: 2 additions & 2 deletions __tests__/hrgt.test.js → __tests__/mrgt.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import { expect } from 'chai';
const __filename = new URL(import.meta.url).pathname;
const __dirname = path.dirname(__filename);

describe('Run HRGT on provided test files', () => {
it('should create HRG', (done) => {
describe('Run MRGT on provided test files', () => {
it('should create MRG', (done) => {
const hrgtPath = path.resolve(__dirname, '../lib/Run.js');
const contentPath = path.resolve(__dirname, 'content');
const configFile = path.resolve(contentPath, 'config.yaml');
Expand Down
49 changes: 0 additions & 49 deletions __tests__/package.json

This file was deleted.

16 changes: 0 additions & 16 deletions __tests__/tsconfig.json

This file was deleted.

20 changes: 20 additions & 0 deletions lib/Generator.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
export declare class Generator {
private method;
private scopedir;
private inputGlob;
private outputName;
private glossary;
private entries;
private htmlOutput;
constructor({ method, scopedir, input, output, }: {
method: any;
scopedir: string;
input: string;
output: string;
});
generate(): Promise<string>;
private createGlossary;
private processGlossaryData;
private generateHTML;
private writeToFile;
}
Loading

0 comments on commit 20f9cde

Please sign in to comment.