Skip to content

Commit

Permalink
feat(schematics): add manual migration (#7458)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed May 16, 2024
1 parent 0955f99 commit f96c494
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
6 changes: 6 additions & 0 deletions projects/cdk/schematics/collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
"description": "Manually run migration to update Taiga to v3.x.x",
"factory": "./ng-update/v3/index#updateToV3",
"schema": "./ng-update/v3/schema.json"
},
"updateToV3_78": {
"private": true,
"description": "Manually run migration to update proprietary icons",
"factory": "./ng-update/v3-78/index#updateToV3_78",
"schema": "./ng-update/v3-78/schema.json"
}
}
}
13 changes: 13 additions & 0 deletions projects/cdk/schematics/ng-update/v3-78/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "taiga-ui-ng-update-v3-78",
"title": "Taiga UI ng-update v3.78",
"type": "object",
"properties": {
"experimental": {
"description": "Run experimental",
"type": "boolean",
"default": false
}
}
}

0 comments on commit f96c494

Please sign in to comment.