Skip to content

Commit

Permalink
Configured publicAssets() to ignore .DS_Store and .gitkeep (#33)
Browse files Browse the repository at this point in the history
* bugfix: Configured publicAssets() to ignore .DS_Store and .gitkeep

* chore: Added changeset

---------

Co-authored-by: ijlee2 <ijlee2@users.noreply.github.com>
  • Loading branch information
ijlee2 and ijlee2 authored Aug 29, 2024
1 parent ec6957b commit 56a2be2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/stale-beers-study.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-v2-addon-repo": patch
---

Configured publicAssets() to ignore .DS_Store and .gitkeep
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {

// Update public-assets field in package.json
addon.publicAssets('public/assets', {
exclude: ['**/.gitkeep'],
exclude: ['**/.*'],
namespace: '<%= options.addon.name %>',
}),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {

// Update public-assets field in package.json
addon.publicAssets('public/assets', {
exclude: ['**/.gitkeep'],
exclude: ['**/.*'],
namespace: '@my-org-ui/form',
}),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {

// Update public-assets field in package.json
addon.publicAssets('public/assets', {
exclude: ['**/.gitkeep'],
exclude: ['**/.*'],
namespace: '\\<%= options.addon.name %\\>',
}),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {

// Update public-assets field in package.json
addon.publicAssets('public/assets', {
exclude: ['**/.gitkeep'],
exclude: ['**/.*'],
namespace: '@my-org-ui/form',
}),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {

// Update public-assets field in package.json
addon.publicAssets('public/assets', {
exclude: ['**/.gitkeep'],
exclude: ['**/.*'],
namespace: '<%= options.addon.name %>',
}),

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export default {

// Update public-assets field in package.json
addon.publicAssets('public/assets', {
exclude: ['**/.gitkeep'],
exclude: ['**/.*'],
namespace: '@my-org-ui/form',
}),

Expand Down

0 comments on commit 56a2be2

Please sign in to comment.