feat: Update .gitignore and refine TypeScript configuration; clean up commented code and enhance dataset validation; npm updates
Some checks failed
CI / container-job (push) Failing after 35s
Some checks failed
CI / container-job (push) Failing after 35s
- Updated .gitignore to include new patterns - Refined TypeScript configuration for better performance and readability - Cleaned up commented code in several files - Enhanced dataset validation logic - Updated npm dependencies to the latest versions
This commit is contained in:
parent
a5e0a36327
commit
8d47a58d29
22 changed files with 1315 additions and 4273 deletions
|
@ -51,7 +51,7 @@ test.group('ReferenceValidation', () => {
|
|||
vine.object({
|
||||
reference: vine.string().validateReference({ typeField: 'type' }),
|
||||
type: vine.enum(Object.values(ReferenceIdentifierTypes)),
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const data = {
|
||||
|
@ -71,13 +71,13 @@ test.group('ReferenceValidation', () => {
|
|||
vine.object({
|
||||
reference: vine.string().validateReference({ typeField: 'type' }),
|
||||
type: vine.enum(Object.values(ReferenceIdentifierTypes)),
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const data = {
|
||||
// reference: '978-3-85316-090-9',
|
||||
// reference: '9783853160909',
|
||||
// reference: '978-3-900312-64-0', // Geologische Karte der Republik Österreich 1 : 50.000
|
||||
// reference: '978-3-900312-64-0', // Geologische Karte der Republik Österreich 1 : 50.000
|
||||
reference: '3900312648', // Geologische Karte der Republik Österreich 1 : 50.000
|
||||
type: ReferenceIdentifierTypes.ISBN,
|
||||
};
|
||||
|
@ -95,7 +95,7 @@ test.group('ReferenceValidation', () => {
|
|||
vine.object({
|
||||
reference: vine.string().validateReference({ typeField: 'type' }),
|
||||
type: vine.enum(Object.values(ReferenceIdentifierTypes)),
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const data = {
|
||||
|
@ -116,7 +116,7 @@ test.group('ReferenceValidation', () => {
|
|||
vine.object({
|
||||
reference: vine.string().validateReference({ typeField: 'type' }),
|
||||
type: vine.enum(Object.values(ReferenceIdentifierTypes)),
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const data = {
|
||||
|
@ -137,7 +137,7 @@ test.group('ReferenceValidation', () => {
|
|||
vine.object({
|
||||
reference: vine.string().validateReference({ typeField: 'type' }),
|
||||
type: vine.enum(Object.values(ReferenceIdentifierTypes)),
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const data = {
|
||||
|
@ -158,7 +158,7 @@ test.group('ReferenceValidation', () => {
|
|||
vine.object({
|
||||
reference: vine.string().validateReference({ typeField: 'type' }),
|
||||
type: vine.enum(Object.values(ReferenceIdentifierTypes)),
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const data = {
|
||||
|
@ -179,7 +179,7 @@ test.group('ReferenceValidation', () => {
|
|||
vine.object({
|
||||
reference: vine.string().validateReference({ typeField: 'type' }),
|
||||
type: vine.enum(Object.values(ReferenceIdentifierTypes)),
|
||||
})
|
||||
}),
|
||||
);
|
||||
|
||||
const data = {
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue