TASK 82: Система сборки для @isocubic/metamode (Phase 13)#268
Open
konard wants to merge 3 commits intonetkeep80:mainfrom
Open
TASK 82: Система сборки для @isocubic/metamode (Phase 13)#268konard wants to merge 3 commits intonetkeep80:mainfrom
konard wants to merge 3 commits intonetkeep80:mainfrom
Conversation
Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: netkeep80#245
Add tsup-based build configuration for the @isocubic/metamode package, enabling compilation to ESM + CJS formats with TypeScript declarations. Changes: - Add tsup.config.ts with ESM/CJS output, dts generation, and treeshaking - Update package.json: point main/module/types to dist/, add build scripts - Fix broken import: issue-generator.ts referenced './god-mode' instead of './metamode' - Remove unnecessary tsconfig options (jsx, erasableSyntaxOnly) - Add .gitignore for dist/ and node_modules/ in package directory - Fix eslint config to ignore **/dist (not just root dist/) - Create docs/phase-13.md: plan for extracting @isocubic/metamode as NPM package - Update README.md roadmap with Phase 13 - Update docs/metamode.json with phase-13.md entry - Remove stale 'experimental' status from phase-12.md entry Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This reverts commit 3be328f.
Contributor
Author
🤖 Solution Draft LogThis log file contains the complete execution trace of the AI solution draft process. 💰 Cost estimation:
Now working session is ended, feel free to review and add any feedback on the solution draft. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Краткое описание
Завершена TASK 82 — первая задача Phase 13 (Выделение @isocubic/metamode в отдельный NPM-пакет).
Добавлена система сборки
tsupдля пакета@isocubic/metamode, позволяющая компилировать TypeScript в ESM + CJS форматы с генерацией TypeScript деклараций.Новая фаза разработки
Создан документ
docs/phase-13.mdс планом задач Phase 13:Изменения
tsup.config.ts— конфигурация сборки (ESM + CJS, .d.ts, source maps, treeshaking)packages/metamode/package.json— main/module/types указывают наdist/, добавлены скриптыbuildиprepublishOnlyissue-generator.tsимпортировал./god-modeвместо./metamode(пропущено при рефакторинге TASK 72)packages/metamode/tsconfig.json— удалены ненужные опции (jsx,erasableSyntaxOnly).gitignoreдляdist/иnode_modules/в директории пакетаeslint.config.js—**/distдобавлен в глобальные игнорируемые путиdocs/phase-13.md— план Phase 13README.md— Phase 13 добавлена в Roadmapdocs/metamode.json— добавлена записьphase-13.md, удалён устаревший статусexperimentalу Phase 12Результат сборки
Test plan
npm run lint— 0 errors, 33 pre-existing warnings)npm run typecheck)npm run format:check)npm run metamode:validate)npx vitest run)cd packages/metamode && npx tsup)npm pack --dry-runcreates valid tarball (67.9 KB, 19 files)References
Fixes #245
🤖 Generated with Claude Code