Skip to content

Commit a0d70fb

Browse files
authored
fix(core): ensure polyfill package.json and all js files are packaged (#11055)
1 parent 19a5ede commit a0d70fb

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

packages/core/project.json

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,26 +30,21 @@
3030
"{projectRoot}/global-types.d.ts",
3131
{
3232
"glob": "**/*",
33-
"input": "{projectRoot}/fetch/",
34-
"output": "./fetch/"
35-
},
36-
{
37-
"glob": "**/*",
38-
"input": "{projectRoot}/js-libs/",
39-
"output": "./js-libs/"
33+
"input": "{projectRoot}/platforms/",
34+
"output": "./platforms/"
4035
},
4136
{
42-
"glob": "**/*",
43-
"input": "{projectRoot}/cli-hooks/",
44-
"output": "./cli-hooks/"
37+
"glob": "**/*.d.ts",
38+
"input": "{projectRoot}/",
39+
"output": "./"
4540
},
4641
{
47-
"glob": "**/*",
48-
"input": "{projectRoot}/platforms/",
49-
"output": "./platforms/"
42+
"glob": "**/*.(mjs|js)",
43+
"input": "{projectRoot}/",
44+
"output": "./"
5045
},
5146
{
52-
"glob": "**/*.d.ts",
47+
"glob": "*/**/package.json",
5348
"input": "{projectRoot}/",
5449
"output": "./"
5550
}

0 commit comments

Comments
 (0)