Skip to content

Commit

Permalink
chore: updating package.json and contraints.prop config to allow for css
Browse files Browse the repository at this point in the history
  • Loading branch information
georgewrmarshall committed Feb 2, 2024
1 parent b117ab9 commit 5267cb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion constraints.pro
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ gen_enforced_field(WorkspaceCwd, 'exports["./package.json"]', './package.json').

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

% If a dependency is listed under "dependencies", it should not be listed under
% "devDependencies".
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
"module": "./dist/index.mjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
"dist",
"src/css/"
],
"scripts": {
"build": "tsup --clean && yarn build:types",
Expand Down

0 comments on commit 5267cb2

Please sign in to comment.