fix(directives): Refactor export statements in directives index for consistency
This commit is contained in:
		| @@ -1,5 +1,11 @@ | ||||
| # Changelog | ||||
|  | ||||
| ## 2025-04-18 - 2.0.41 - fix(directives) | ||||
| Refactor export statements in directives index for consistency | ||||
|  | ||||
| - Changed individual export of 'resolve' and 'subscribe' to wildcard exports in ts/directives/index.ts | ||||
| - Simplified module export structure without altering functionality | ||||
|  | ||||
| ## 2025-04-18 - 2.0.40 - fix(dees-element) | ||||
| Refactor project structure and update dependency versions. Internal modules (e.g. dees-element classes and directives) have been reorganized and deprecated paths removed, and package.json now includes an updated packageManager field. | ||||
|  | ||||
|   | ||||
| @@ -3,6 +3,6 @@ | ||||
|  */ | ||||
| export const commitinfo = { | ||||
|   name: '@design.estate/dees-element', | ||||
|   version: '2.0.40', | ||||
|   version: '2.0.41', | ||||
|   description: 'A library for creating custom elements extending the lit element class with additional functionalities.' | ||||
| } | ||||
|   | ||||
| @@ -1,11 +1,7 @@ | ||||
| // better scoped exports | ||||
| import { resolve } from './classes.resolvedirective.js'; | ||||
| import { subscribe } from './classes.subscribedirective.js'; | ||||
| export * from './classes.resolvedirective.js'; | ||||
| export * from './classes.subscribedirective.js'; | ||||
|  | ||||
| export { | ||||
|   resolve, | ||||
|   subscribe, | ||||
| } | ||||
|  | ||||
| export { subscribeWithTemplate } from './classes.subscribewithtemplate.js'; | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user