[1] Renamed generic utils to specialized versions

It is required for follow up commits

Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
Alexander Borsuk 2022-11-21 10:19:10 +01:00
parent cf3ad82a72
commit 046b79b4e5
3 changed files with 2 additions and 2 deletions

View file

@ -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.

View file

@ -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));