mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-01-31 06:42:03 +00:00
Changes: - Removed specific compiled file patterns from .gitignore to simplify ignore rules. - Modified error handling in feature-loader.ts to rethrow errors instead of keeping original paths, preventing potential broken references. - Added ".js" extensions to import statements in types package for ESM compliance. Benefits: ✅ Cleaner .gitignore for better maintainability ✅ Improved error handling logic in feature-loader ✅ Consistent import paths for ESM compatibility All tests passing.
20 lines
450 B
JSON
20 lines
450 B
JSON
{
|
|
"name": "@automaker/types",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Shared type definitions for AutoMaker",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch"
|
|
},
|
|
"keywords": ["automaker", "types"],
|
|
"author": "AutoMaker Team",
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.3"
|
|
}
|
|
}
|