Skip to content

Commit

Permalink
fix: remove displayName from server component
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgoff committed Sep 3, 2024
1 parent 15f9412 commit aa8a9a2
Show file tree
Hide file tree
Showing 5 changed files with 59 additions and 13 deletions.
38 changes: 38 additions & 0 deletions packages/epo-react-lib/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# env
.env.*

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*


# testing

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Source
__mocks__
node_modules/
dist/
dist-ssr
*.local
storybook-static/
tempPublish/
public/
src/

.out/*
2 changes: 1 addition & 1 deletion packages/epo-react-lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"build-storybook:production": "yarn build-storybook -o ../../storybook-static",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --max-workers=2",
"test:generate-output": "yarn test --json --outputFile=.jest-test-results.json || true",
"release": "yarn build && clean-publish --without-publish && semantic-release -e semantic-release-monorepo --debug"
"release": "yarn build && semantic-release -e semantic-release-monorepo --debug"
},
"files": [
"CHANGELOG.md",
Expand Down
7 changes: 1 addition & 6 deletions packages/epo-react-lib/release.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,7 @@ const release = {
},
],
["@semantic-release/github"],
// [
// "@semantic-release/npm",
// {
// pkgRoot: "tempPublish",
// },
// ],
["@semantic-release/npm"],
],
};

Expand Down
2 changes: 0 additions & 2 deletions packages/epo-react-lib/src/form/Input/Input.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import * as Styled from "./styles";

Styled.Input.displayName = "Form.Input";

export default Styled.Input;
23 changes: 19 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4214,6 +4214,21 @@
estree-walker "^2.0.2"
picomatch "^2.3.1"

"@rubin-epo/[email protected]":
version "2.1.0"
resolved "https://registry.yarnpkg.com/@rubin-epo/epo-react-lib/-/epo-react-lib-2.1.0.tgz#4c55f8f1de35d2a6e939ea382bb73f89734b8460"
integrity sha512-uw1FqIFrGPs9zJjsQZfjB1+xR8k4WboUzTjpRlG0Cjm0LPUs23599wdIr17J5+AN49CbBF7+utY27hg9fnUGXw==
dependencies:
"@castiron/style-mixins" "^1.0.6"
"@headlessui/react" "^2.0.3"
flickity "^3.0.0"
focus-trap "^7.4.2"
lodash "^4.17.21"
react-player "^2.14.1"
react-share "^4.4.1"
react-slider "^2.0.6"
styled-components "^6.1.1"

"@rushstack/eslint-patch@^1.10.3":
version "1.10.3"
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.10.3.tgz#391d528054f758f81e53210f1a1eebcf1a8b1d20"
Expand Down Expand Up @@ -7385,10 +7400,10 @@ conventional-changelog-angular@^8.0.0:
dependencies:
compare-func "^2.0.0"

conventional-changelog-conventionalcommits@^7.0.2:
version "7.0.2"
resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz#aa5da0f1b2543094889e8cf7616ebe1a8f5c70d5"
integrity sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==
"conventional-changelog-conventionalcommits@>= 8.0.0", conventional-changelog-conventionalcommits@^7.0.2:
version "8.0.0"
resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-8.0.0.tgz#3fa2857c878701e7f0329db5a1257cb218f166fe"
integrity sha512-eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA==
dependencies:
compare-func "^2.0.0"

Expand Down

0 comments on commit aa8a9a2

Please sign in to comment.