Skip to content

Commit 30540e6

Browse files
committed
Use npx for invoking glint, rather than pnpm/npm directly (simplifies part of the blueprint)
1 parent 30291c6 commit 30540e6

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

files/rollup.config.mjs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,8 @@ export default {
6262

6363
// Emit .d.ts declaration files
6464
addon.declarations(
65-
'declarations',<% if (packageManager === 'pnpm') { %>
66-
`pnpm glint --declaration --project ${tsConfig}`,<% } else { %>
67-
`npm exec glint -- --declaration --project ${tsConfig}`,<% } %>
65+
'declarations',
66+
`npx glint --declaration --project ${tsConfig}`,
6867
),<% } %>
6968

7069
// addons are allowed to contain imports of .css files, which we want rollup

0 commit comments

Comments
 (0)