Skip to content
This repository was archived by the owner on Nov 26, 2024. It is now read-only.

Commit 78e8692

Browse files
chore: updating package.json and contraints.prop config to allow for css (#609)
1 parent b117ab9 commit 78e8692

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

constraints.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ gen_enforced_field(WorkspaceCwd, 'exports["./package.json"]', './package.json').
8181

8282
% The list of files included in the package must only include files generated
8383
% during the build step.
84-
gen_enforced_field(WorkspaceCwd, 'files', ['dist']).
84+
gen_enforced_field(WorkspaceCwd, 'files', ['dist', 'src/css/']).
8585

8686
% If a dependency is listed under "dependencies", it should not be listed under
8787
% "devDependencies".

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"module": "./dist/index.mjs",
2828
"types": "./dist/types/index.d.ts",
2929
"files": [
30-
"dist"
30+
"dist",
31+
"src/css/"
3132
],
3233
"scripts": {
3334
"build": "tsup --clean && yarn build:types",

0 commit comments

Comments
 (0)