feat(index.ts): Add export for colors module in index.ts

This commit is contained in:
2024-10-07 13:43:15 +02:00
parent ae641801e1
commit dd46d3e2f4
3 changed files with 8 additions and 1 deletions

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@design.estate/dees-catalog',
version: '1.1.13',
version: '1.2.0',
description: 'A library for building components and other projects'
}

View File

@@ -1,2 +1,4 @@
export * from './elements/index.js';
import * as colors from './elements/00colors.js';
export { colors };
export { commitinfo } from './00_commitinfo_data.js';