diff --git a/src/index.ts b/src/index.ts index 2dadb5a..a43aaf7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ export {}; -import { parseDataVersion, parseAppVersion } from './utils'; +import { parseDataVersion, parseAppVersion } from './versions'; // TODO: Implement automated version checks from this metaserver script. // It should check by cron if actual files are really available on all servers. diff --git a/src/utils.ts b/src/versions.ts similarity index 100% rename from src/utils.ts rename to src/versions.ts diff --git a/test/utils.test.ts b/test/versions.test.ts similarity index 97% rename from test/utils.test.ts rename to test/versions.test.ts index 94d4239..c395eb5 100644 --- a/test/utils.test.ts +++ b/test/versions.test.ts @@ -1,5 +1,5 @@ import { describe, expect, test } from '@jest/globals'; -import { parseDataVersion, parseAppVersion } from '../src/utils'; +import { parseDataVersion, parseAppVersion } from '../src/versions'; describe('parseDataVersion', () => { test('220801', () => expect(parseDataVersion('220801')).toEqual(220801));