pulse-js-framework 1.7.6 → 1.7.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,7 @@
5
5
  */
6
6
 
7
7
  import { TokenType, tokenize } from './lexer.js';
8
- import { ParserError, SUGGESTIONS, getDocsUrl } from '../core/errors.js';
8
+ import { ParserError, SUGGESTIONS, getDocsUrl } from '../runtime/errors.js';
9
9
 
10
10
  // AST Node types
11
11
  export const NodeType = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pulse-js-framework",
3
- "version": "1.7.6",
3
+ "version": "1.7.8",
4
4
  "description": "A declarative DOM framework with CSS selector-based structure and reactive pulsations",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/core/errors.js DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Re-export from runtime/errors.js for backwards compatibility
3
- * @module pulse-js-framework/core/errors
4
- */
5
- export * from '../runtime/errors.js';