mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-27 08:28:50 +02:00
level scaffolding
This commit is contained in:
parent
903b537fda
commit
ca33b7ce1b
8 changed files with 305 additions and 76 deletions
25
src/levels/index.js
Normal file
25
src/levels/index.js
Normal file
|
@ -0,0 +1,25 @@
|
|||
// Each level is part of a "sequence;" levels within
|
||||
// a sequence proceed in the order listed here
|
||||
exports.levelSequences = {
|
||||
intro: [
|
||||
require('../../levels/intro/1').level,
|
||||
require('../../levels/intro/2').level
|
||||
],
|
||||
rebase: [
|
||||
require('../../levels/rebase/1').level,
|
||||
require('../../levels/rebase/2').level
|
||||
]
|
||||
};
|
||||
|
||||
// there are also cute names and such for sequences
|
||||
exports.sequenceInfo = {
|
||||
intro: {
|
||||
name: 'Introduction Sequence',
|
||||
about: 'A nicely paced introduction to the majority of git commands'
|
||||
},
|
||||
rebase: {
|
||||
name: 'Master the Rebase Luke!',
|
||||
about: 'What is this whole rebase hotness everyone is talking about? Find out!'
|
||||
}
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue