Skip to content

Commit

Permalink
Fix package.json "files" for npm@9
Browse files Browse the repository at this point in the history
npm/cli#5918 suggets that glob was not
necessary here.
  • Loading branch information
hanazuki committed Feb 25, 2023
1 parent c2eaf9b commit ffc2301
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
"/**/LICENSE",
"/**/LICENSE.txt",
"/*.md",
"/examples/*",
"/lib/*",
"/examples/",
"/lib/",
"/types/*.d.ts",
"/src/*",
"/spec/*",
"/src/",
"/spec/",
"/third_party/jsonnet/CMakeLists.txt.in",
"/third_party/jsonnet/include/*.h",
"/third_party/jsonnet/core/*.c",
Expand All @@ -51,7 +51,7 @@
"/third_party/jsonnet/third_party/rapidyaml/rapidyaml/**/*.natvis",
"/third_party/jsonnet/stdlib/*.cpp",
"/third_party/jsonnet/stdlib/*.jsonnet",
"/third_party/jsonnet/test_suite/*"
"/third_party/jsonnet/test_suite/"
],
"keywords": [
"jsonnet",
Expand Down

0 comments on commit ffc2301

Please sign in to comment.