Skip to content

Commit 78a04ea

Browse files
committed
feat(plugin): add tweakpane as an aux generator option
1 parent 54f2a3e commit 78a04ea

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

libs/plugin/src/generators/aux/aux.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ export async function auxGenerator(tree: Tree) {
2424
type: 'multiselect',
2525
name: 'packages',
2626
message: 'Which packages to add?',
27-
choices: ['angular-three-soba', 'angular-three-rapier', 'angular-three-postprocessing', 'angular-three-cannon'],
27+
choices: [
28+
'angular-three-soba',
29+
'angular-three-rapier',
30+
'angular-three-postprocessing',
31+
'angular-three-cannon',
32+
'angular-three-tweakpane',
33+
],
2834
});
2935

3036
const packagesToAdd = {};

libs/plugin/src/versions.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,7 @@ export const PEER_DEPENDENCIES: Record<string, Record<string, string>> = {
3030
'cannon-es': '^0.20.0',
3131
'cannon-es-debugger': '^1.0.0',
3232
},
33+
'angular-three-tweakpane': {
34+
tweakpane: '^4.0.0',
35+
},
3336
};

0 commit comments

Comments
 (0)