@contractspec/example.learning-journey-duo-drills 3.2.0 → 3.3.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.
@@ -2,31 +2,34 @@ $ contractspec-bun-build prebuild
2
2
  $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
- [contractspec-bun-build] transpile target=bun root=src entries=5
6
- Bundled 5 modules in 16ms
5
+ [contractspec-bun-build] transpile target=bun root=src entries=6
6
+ Bundled 6 modules in 44ms
7
7
 
8
- docs/duo-drills.docblock.js 1.45 KB (entry point)
9
- ./index.js 4.19 KB (entry point)
10
- docs/index.js 1.45 KB (entry point)
11
- ./example.js 0.96 KB (entry point)
12
- ./track.js 1.80 KB (entry point)
8
+ docs/duo-drills.docblock.js 1.45 KB (entry point)
9
+ ./index.js 4.78 KB (entry point)
10
+ docs/index.js 1.45 KB (entry point)
11
+ ./example.js 0.96 KB (entry point)
12
+ ./learning-journey-duo-drills.feature.js 0.62 KB (entry point)
13
+ ./track.js 1.80 KB (entry point)
13
14
 
14
- [contractspec-bun-build] transpile target=node root=src entries=5
15
- Bundled 5 modules in 17ms
15
+ [contractspec-bun-build] transpile target=node root=src entries=6
16
+ Bundled 6 modules in 27ms
16
17
 
17
- docs/duo-drills.docblock.js 1.43 KB (entry point)
18
- ./index.js 4.16 KB (entry point)
19
- docs/index.js 1.43 KB (entry point)
20
- ./example.js 0.95 KB (entry point)
21
- ./track.js 1.79 KB (entry point)
18
+ docs/duo-drills.docblock.js 1.43 KB (entry point)
19
+ ./index.js 4.76 KB (entry point)
20
+ docs/index.js 1.43 KB (entry point)
21
+ ./example.js 0.95 KB (entry point)
22
+ ./learning-journey-duo-drills.feature.js 0.61 KB (entry point)
23
+ ./track.js 1.79 KB (entry point)
22
24
 
23
- [contractspec-bun-build] transpile target=browser root=src entries=5
24
- Bundled 5 modules in 31ms
25
+ [contractspec-bun-build] transpile target=browser root=src entries=6
26
+ Bundled 6 modules in 19ms
25
27
 
26
- docs/duo-drills.docblock.js 1.43 KB (entry point)
27
- ./index.js 4.16 KB (entry point)
28
- docs/index.js 1.43 KB (entry point)
29
- ./example.js 0.95 KB (entry point)
30
- ./track.js 1.79 KB (entry point)
28
+ docs/duo-drills.docblock.js 1.43 KB (entry point)
29
+ ./index.js 4.76 KB (entry point)
30
+ docs/index.js 1.43 KB (entry point)
31
+ ./example.js 0.95 KB (entry point)
32
+ ./learning-journey-duo-drills.feature.js 0.61 KB (entry point)
33
+ ./track.js 1.79 KB (entry point)
31
34
 
32
35
  $ contractspec-bun-build types
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @contractspec/example.learning-journey-duo-drills
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 890a0da: fix: stability improvements
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [890a0da]
12
+ - @contractspec/module.learning-journey@3.3.0
13
+ - @contractspec/lib.contracts-spec@3.3.0
14
+
3
15
  ## 3.2.0
4
16
 
5
17
  ### Minor Changes
@@ -116,8 +116,25 @@ var drillsLanguageBasicsTrack = {
116
116
  var drillTracks = [
117
117
  drillsLanguageBasicsTrack
118
118
  ];
119
+
120
+ // src/learning-journey-duo-drills.feature.ts
121
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
122
+ var LearningJourneyDuoDrillsFeature = defineFeature({
123
+ meta: {
124
+ key: "learning-journey-duo-drills",
125
+ version: "1.0.0",
126
+ title: "Learning Journey: Duo Drills",
127
+ description: "Drill-based learning with spaced repetition, XP, and streaks",
128
+ domain: "learning-journey",
129
+ owners: ["@examples"],
130
+ tags: ["learning", "drills", "srs", "gamification"],
131
+ stability: "experimental"
132
+ },
133
+ docs: ["docs.learning-journey.duo-drills"]
134
+ });
119
135
  export {
120
136
  example_default as example,
121
137
  drillsLanguageBasicsTrack,
122
- drillTracks
138
+ drillTracks,
139
+ LearningJourneyDuoDrillsFeature
123
140
  };
@@ -0,0 +1,18 @@
1
+ // src/learning-journey-duo-drills.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var LearningJourneyDuoDrillsFeature = defineFeature({
4
+ meta: {
5
+ key: "learning-journey-duo-drills",
6
+ version: "1.0.0",
7
+ title: "Learning Journey: Duo Drills",
8
+ description: "Drill-based learning with spaced repetition, XP, and streaks",
9
+ domain: "learning-journey",
10
+ owners: ["@examples"],
11
+ tags: ["learning", "drills", "srs", "gamification"],
12
+ stability: "experimental"
13
+ },
14
+ docs: ["docs.learning-journey.duo-drills"]
15
+ });
16
+ export {
17
+ LearningJourneyDuoDrillsFeature
18
+ };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './track';
2
+ export * from './learning-journey-duo-drills.feature';
2
3
  export { default as example } from './example';
3
4
  import './docs';
package/dist/index.js CHANGED
@@ -117,8 +117,25 @@ var drillsLanguageBasicsTrack = {
117
117
  var drillTracks = [
118
118
  drillsLanguageBasicsTrack
119
119
  ];
120
+
121
+ // src/learning-journey-duo-drills.feature.ts
122
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
123
+ var LearningJourneyDuoDrillsFeature = defineFeature({
124
+ meta: {
125
+ key: "learning-journey-duo-drills",
126
+ version: "1.0.0",
127
+ title: "Learning Journey: Duo Drills",
128
+ description: "Drill-based learning with spaced repetition, XP, and streaks",
129
+ domain: "learning-journey",
130
+ owners: ["@examples"],
131
+ tags: ["learning", "drills", "srs", "gamification"],
132
+ stability: "experimental"
133
+ },
134
+ docs: ["docs.learning-journey.duo-drills"]
135
+ });
120
136
  export {
121
137
  example_default as example,
122
138
  drillsLanguageBasicsTrack,
123
- drillTracks
139
+ drillTracks,
140
+ LearningJourneyDuoDrillsFeature
124
141
  };
@@ -0,0 +1 @@
1
+ export declare const LearningJourneyDuoDrillsFeature: import("@contractspec/lib.contracts-spec").FeatureModuleSpec;
@@ -0,0 +1,19 @@
1
+ // @bun
2
+ // src/learning-journey-duo-drills.feature.ts
3
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
4
+ var LearningJourneyDuoDrillsFeature = defineFeature({
5
+ meta: {
6
+ key: "learning-journey-duo-drills",
7
+ version: "1.0.0",
8
+ title: "Learning Journey: Duo Drills",
9
+ description: "Drill-based learning with spaced repetition, XP, and streaks",
10
+ domain: "learning-journey",
11
+ owners: ["@examples"],
12
+ tags: ["learning", "drills", "srs", "gamification"],
13
+ stability: "experimental"
14
+ },
15
+ docs: ["docs.learning-journey.duo-drills"]
16
+ });
17
+ export {
18
+ LearningJourneyDuoDrillsFeature
19
+ };
@@ -116,8 +116,25 @@ var drillsLanguageBasicsTrack = {
116
116
  var drillTracks = [
117
117
  drillsLanguageBasicsTrack
118
118
  ];
119
+
120
+ // src/learning-journey-duo-drills.feature.ts
121
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
122
+ var LearningJourneyDuoDrillsFeature = defineFeature({
123
+ meta: {
124
+ key: "learning-journey-duo-drills",
125
+ version: "1.0.0",
126
+ title: "Learning Journey: Duo Drills",
127
+ description: "Drill-based learning with spaced repetition, XP, and streaks",
128
+ domain: "learning-journey",
129
+ owners: ["@examples"],
130
+ tags: ["learning", "drills", "srs", "gamification"],
131
+ stability: "experimental"
132
+ },
133
+ docs: ["docs.learning-journey.duo-drills"]
134
+ });
119
135
  export {
120
136
  example_default as example,
121
137
  drillsLanguageBasicsTrack,
122
- drillTracks
138
+ drillTracks,
139
+ LearningJourneyDuoDrillsFeature
123
140
  };
@@ -0,0 +1,18 @@
1
+ // src/learning-journey-duo-drills.feature.ts
2
+ import { defineFeature } from "@contractspec/lib.contracts-spec";
3
+ var LearningJourneyDuoDrillsFeature = defineFeature({
4
+ meta: {
5
+ key: "learning-journey-duo-drills",
6
+ version: "1.0.0",
7
+ title: "Learning Journey: Duo Drills",
8
+ description: "Drill-based learning with spaced repetition, XP, and streaks",
9
+ domain: "learning-journey",
10
+ owners: ["@examples"],
11
+ tags: ["learning", "drills", "srs", "gamification"],
12
+ stability: "experimental"
13
+ },
14
+ docs: ["docs.learning-journey.duo-drills"]
15
+ });
16
+ export {
17
+ LearningJourneyDuoDrillsFeature
18
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.learning-journey-duo-drills",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "Drill-based learning journey example with SRS, XP, and streak hooks.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -40,6 +40,13 @@
40
40
  "browser": "./dist/browser/example.js",
41
41
  "default": "./dist/example.js"
42
42
  },
43
+ "./learning-journey-duo-drills.feature": {
44
+ "types": "./dist/learning-journey-duo-drills.feature.d.ts",
45
+ "bun": "./dist/learning-journey-duo-drills.feature.js",
46
+ "node": "./dist/node/learning-journey-duo-drills.feature.js",
47
+ "browser": "./dist/browser/learning-journey-duo-drills.feature.js",
48
+ "default": "./dist/learning-journey-duo-drills.feature.js"
49
+ },
43
50
  "./track": {
44
51
  "types": "./dist/track.d.ts",
45
52
  "bun": "./dist/track.js",
@@ -64,13 +71,13 @@
64
71
  "typecheck": "tsc --noEmit"
65
72
  },
66
73
  "dependencies": {
67
- "@contractspec/module.learning-journey": "3.2.0",
68
- "@contractspec/lib.contracts-spec": "3.2.0"
74
+ "@contractspec/module.learning-journey": "3.3.0",
75
+ "@contractspec/lib.contracts-spec": "3.3.0"
69
76
  },
70
77
  "devDependencies": {
71
- "@contractspec/tool.typescript": "3.2.0",
78
+ "@contractspec/tool.typescript": "3.3.0",
72
79
  "typescript": "^5.9.3",
73
- "@contractspec/tool.bun": "3.2.0"
80
+ "@contractspec/tool.bun": "3.3.0"
74
81
  },
75
82
  "publishConfig": {
76
83
  "exports": {
@@ -109,6 +116,13 @@
109
116
  "browser": "./dist/browser/example.js",
110
117
  "default": "./dist/example.js"
111
118
  },
119
+ "./learning-journey-duo-drills.feature": {
120
+ "types": "./dist/learning-journey-duo-drills.feature.d.ts",
121
+ "bun": "./dist/learning-journey-duo-drills.feature.js",
122
+ "node": "./dist/node/learning-journey-duo-drills.feature.js",
123
+ "browser": "./dist/browser/learning-journey-duo-drills.feature.js",
124
+ "default": "./dist/learning-journey-duo-drills.feature.js"
125
+ },
112
126
  "./track": {
113
127
  "types": "./dist/track.d.ts",
114
128
  "bun": "./dist/track.js",
package/src/index.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './track';
2
+ export * from './learning-journey-duo-drills.feature';
2
3
  export { default as example } from './example';
3
4
  import './docs';
@@ -0,0 +1,16 @@
1
+ import { defineFeature } from '@contractspec/lib.contracts-spec';
2
+
3
+ export const LearningJourneyDuoDrillsFeature = defineFeature({
4
+ meta: {
5
+ key: 'learning-journey-duo-drills',
6
+ version: '1.0.0',
7
+ title: 'Learning Journey: Duo Drills',
8
+ description: 'Drill-based learning with spaced repetition, XP, and streaks',
9
+ domain: 'learning-journey',
10
+ owners: ['@examples'],
11
+ tags: ['learning', 'drills', 'srs', 'gamification'],
12
+ stability: 'experimental',
13
+ },
14
+
15
+ docs: ['docs.learning-journey.duo-drills'],
16
+ });