Skip to content

Commit

Permalink
Remove engine prop from package.json (#1038)
Browse files Browse the repository at this point in the history
* rm engine prop from package.json

* added changeset
  • Loading branch information
lukasoppermann authored Aug 30, 2024
1 parent a349dc7 commit 8430aea
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/ten-cougars-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/primitives': patch
---

Remove engine prop from package.json
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"name": "@primer/primitives",
"version": "9.0.3",
"description": "Typography, spacing, and color primitives for Primer design system",
"engines": {
"node": ">=18.18.0 <18.19.0"
},
"files": [
"dist"
],
Expand Down
10 changes: 9 additions & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ export default defineConfig({
globals: true,
exclude: [...configDefaults.exclude, 'e2e/*', 'docs/*'],
coverage: {
exclude: ['docs/*', 'e2e/*', '.eslintrc.cjs', 'vitest.config.ts', '.prettierrc.js', 'playwright.config.ts'],
exclude: [
'docs/*',
'e2e/*',
'.eslintrc.cjs',
'vitest.config.ts',
'.prettierrc.js',
'playwright.config.ts',
'dist',
],
},
},
})

0 comments on commit 8430aea

Please sign in to comment.