From 783fe3d29296a32bf0eee7e5bf5f2f0fc33dd051 Mon Sep 17 00:00:00 2001 From: Koji Hasegawa Date: Wed, 20 Mar 2024 22:07:57 +0900 Subject: [PATCH] Add specify directories for publishing in the `files` field Maybe the glob rule changed for the `files` field from Node 16. It seems `*` only applies to files and skips directories. see: https://github.com/openupm/openupm-pipelines/issues/14 --- package.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package.json b/package.json index 7d3eca2..b0b2937 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,13 @@ "documentationUrl": "https://github.com/nowsprinting/test-helper/blob/master/README.md", "files": [ "Documentation~", + "Editor", "Editor*", + "Runtime", "Runtime*", + "RuntimeInternals", + "RuntimeInternals*", + "Tests", "Tests*", "LICENSE.md*", "package.json*",