Skip to content

Commit

Permalink
feat(project): Simplifica lógica de parseado de OAs (WIP)
Browse files Browse the repository at this point in the history
  • Loading branch information
lupomontero committed May 16, 2024
1 parent 375b5a2 commit 850bb34
Show file tree
Hide file tree
Showing 10 changed files with 429 additions and 280 deletions.
6 changes: 4 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,10 @@ program.command('project')
.argument('<dir>', 'path to project directory')
.option('--repo <string>', 'Repository')
.option('--version <string>', 'Project version')
.option('--lo <string>', 'Path to yml file with reference learning objectives')
.option('--variants <string>', 'Comma separated variant languages')
.option(
'--lo <string>',
'Path to directory containing data.yml with reference learning objectives',
)
.option('--debug', 'Show error stack traces')
.action(createHandler(parseProject));

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# A project

## Índice

Blah blah blah

***

## 1. Preámbulo

Blah blah blah

## 2. Resumen del proyecto

Blah blah blah
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
track: web-dev
tracks:
- web-dev
learningObjectives:
- html/semantics
- css/selectors
- dom/selectors
- dom/events
- dom/manipulation
- js/data-types/primitive-vs-non-primitive
- js/data-types/strings
- js/variables
- js/conditionals
- js/functions
- js/semantics
- ux/user-understanding
- ux/prototyping
- id: css
exclude: true
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,8 @@ learningObjectives:
- js/semantics
- ux/user-understanding
- ux/prototyping
- css: false
variants:
- name: foo
learningObjectives:
- id: css
exclude: true
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ learningObjectives:
- js/semantics
- ux/user-understanding
- ux/prototyping
- react:
optional: true
- id: react
optional: true
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ learningObjectives:
- js/semantics
- ux/user-understanding
- ux/prototyping
- react:
optional: true
- id: react
optional: true
variants:
- name: node
learningObjectives:
- node
- react:
optional: true
- angular:
optional: true
- id: react
optional: true
- id: angular
optional: true
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ learningObjectives:
variants:
- name: cli
learningObjectives:
- css: false
- id: css
exclude: true
Loading

0 comments on commit 850bb34

Please sign in to comment.