Returns whether this is a Vite-based project. This checks whether @embroider/vite is listed in (dev)Dependencies. @private @method isViteProject @return {Boolean} Whether this is a Vite project
()
| 191 | @return {Boolean} Whether this is a Vite project |
| 192 | */ |
| 193 | isViteProject() { |
| 194 | return '@embroider/vite' in this.dependencies(); // This would preferably be `isClassicProject` as Vite is the default now, but it is tough to come up with a metric |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | Returns whether or not this is an Ember CLI addon. |
no test coverage detected