Skip to content

Commit

Permalink
Merge pull request #312 from void-mAlex/fix-windows-terminals
Browse files Browse the repository at this point in the history
bring v2 addon bp in line with scripts from ember addon
  • Loading branch information
NullVoxPopuli authored Nov 25, 2024
2 parents f6539b1 + 80cf286 commit f2b45cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions files/__addonLocation__/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@
"dist"
],
"scripts": {<% if (typescript) { %>
"build": "concurrently '<%= packageManager %>:build:*'",
"build": "concurrently \"<%= packageManager %>:build:*\"",
"build:js": "rollup --config",
"build:types": "glint --declaration",<% } else { %>
"build": "rollup --config",<% } %>
"lint": "concurrently '<%= packageManager %>:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently '<%= packageManager %>:lint:*:fix' --names 'fix:'",
"lint": "concurrently \"<%= packageManager %>:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"<%= packageManager %>:lint:*:fix\" --names \"fix:\"",
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js:fix": "eslint . --fix",<% if (typescript) { %>
"lint:types": "glint",
"start": "concurrently '<%= packageManager %>:start:*'",
"start": "concurrently \"<%= packageManager %>:start:*\"",
"start:js": "rollup --config --watch --no-watch.clearScreen",
"start:types": "glint --declaration --watch",<% } else { %>
"start": "rollup --config --watch",<% } %>
Expand Down

0 comments on commit f2b45cf

Please sign in to comment.