@atlashub/smartstack-cli 1.23.0 → 1.24.0
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.
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/templates/skills/check-version/SKILL.md +183 -0
- package/templates/skills/debug/SKILL.md +161 -0
- package/templates/skills/explore/SKILL.md +96 -0
- package/templates/skills/quick-search/SKILL.md +87 -0
- package/templates/skills/refactor/SKILL.md +219 -0
- package/templates/skills/review-code/SKILL.md +72 -44
- package/templates/skills/review-code/references/smartstack-conventions.md +93 -33
- package/templates/skills/ui-components/responsive-guidelines.md +278 -0
- package/templates/skills/utils/SKILL.md +37 -0
- package/templates/{commands/utils → skills/utils/subcommands}/test-web-config.md +35 -43
- package/templates/{commands/utils → skills/utils/subcommands}/test-web.md +25 -53
- package/templates/{commands/validate.md → skills/validate/SKILL.md} +80 -139
- package/templates/commands/check-version.md +0 -267
- package/templates/commands/debug.md +0 -95
- package/templates/commands/efcore/_env-check.md +0 -153
- package/templates/commands/efcore/_shared.md +0 -352
- package/templates/commands/efcore/conflicts.md +0 -90
- package/templates/commands/efcore/db-deploy.md +0 -109
- package/templates/commands/efcore/db-reset.md +0 -180
- package/templates/commands/efcore/db-seed.md +0 -103
- package/templates/commands/efcore/db-status.md +0 -102
- package/templates/commands/efcore/migration.md +0 -186
- package/templates/commands/efcore/rebase-snapshot.md +0 -172
- package/templates/commands/efcore/scan.md +0 -94
- package/templates/commands/efcore/squash.md +0 -329
- package/templates/commands/efcore.md +0 -96
- package/templates/commands/explore.md +0 -45
- package/templates/commands/quick-search.md +0 -72
- package/templates/commands/refactor.md +0 -164
- /package/templates/{commands → skills}/_resources/formatting-guide.md +0 -0
package/dist/index.js
CHANGED
|
@@ -116119,6 +116119,19 @@ appsettings.*.Local.json
|
|
|
116119
116119
|
*.db-wal
|
|
116120
116120
|
`;
|
|
116121
116121
|
await import_fs_extra3.default.writeFile((0, import_path4.join)(projectDir, ".gitignore"), gitignore);
|
|
116122
|
+
await import_fs_extra3.default.ensureDir((0, import_path4.join)(projectDir, ".smartstack"));
|
|
116123
|
+
const smartstackConfig = {
|
|
116124
|
+
projectType: "client",
|
|
116125
|
+
dbContext: "extensions",
|
|
116126
|
+
baseNamespace: projectName,
|
|
116127
|
+
smartStackVersion: "1.0.0",
|
|
116128
|
+
initialized: (/* @__PURE__ */ new Date()).toISOString()
|
|
116129
|
+
};
|
|
116130
|
+
await import_fs_extra3.default.writeFile(
|
|
116131
|
+
(0, import_path4.join)(projectDir, ".smartstack", "config.json"),
|
|
116132
|
+
JSON.stringify(smartstackConfig, null, 2)
|
|
116133
|
+
);
|
|
116134
|
+
logger.success("Created .smartstack/config.json");
|
|
116122
116135
|
await import_fs_extra3.default.ensureDir((0, import_path4.join)(projectDir, ".vscode"));
|
|
116123
116136
|
const launchJson = {
|
|
116124
116137
|
version: "0.2.0",
|