@we-scrum/cli 1.0.6 → 1.0.7
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/package.json
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import Handlebars from 'handlebars';
|
|
2
|
+
import analysisDslLegend from '../../templates/analysis-dsl-legend.hbs';
|
|
2
3
|
import developStorySkill from '../../templates/develop-story-skill.hbs';
|
|
3
4
|
import getNextTask from '../../templates/get-next-task.hbs';
|
|
4
5
|
import reviewAnalysisSkill from '../../templates/review-analysis-skill.hbs';
|
|
5
6
|
|
|
7
|
+
Handlebars.registerPartial('analysis-dsl-legend', analysisDslLegend);
|
|
8
|
+
|
|
6
9
|
const sources = {
|
|
7
10
|
'develop-story-skill': developStorySkill,
|
|
8
11
|
'get-next-task': getNextTask,
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
**Analysis DSL** — `+` Create · `-` Delete · `~` Update (operation prefixes, not markdown bullets).
|
|
2
|
+
These appear on both change headers (`## + Object Foo`) and property lines (`+ name: String`, `~ price: Number`, `- email: String`).
|
|
3
|
+
Rename: `~ OldName > NewName`. Metadata: `> key: value`. Description block: `:::...:::`.
|
|
@@ -36,6 +36,8 @@ we-scrum get-story-analysis --identificationNumber <identificationNumber>
|
|
|
36
36
|
|
|
37
37
|
## Step 2 — Review and return comments
|
|
38
38
|
|
|
39
|
+
{{> analysis-dsl-legend}}
|
|
40
|
+
|
|
39
41
|
Review the story description and analysis DSL together. Check for:
|
|
40
42
|
|
|
41
43
|
**Completeness & correctness**
|