Skip to content

Commit

Permalink
fix(package.json): added package copy files
Browse files Browse the repository at this point in the history
  • Loading branch information
opensrc0 committed Dec 24, 2023
1 parent 3a7f7a2 commit 41bd8c7
Show file tree
Hide file tree
Showing 2 changed files with 172 additions and 4 deletions.
166 changes: 166 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"local": "babel __application/component -d __build-es --watch",
"build": "run-s build-es build-prepare",
"prebuild-es": "echo \"\\x1b[97m\\x1b[44m 1. Started: Building Component in __build-es folder. \\x1b[0m\"",
"build-es": "babel __application/component -d __build-es --ignore *.test.js",
"build-es": "babel __application/component -d __build-es --ignore *.test.js && npm run copyfiles __appset/* ./",
"prebuild-prepare": "echo \"\\x1b[97m\\x1b[44m 2. Started: Direct import of individual package preparation started. \\x1b[0m\"",
"build-prepare": "node ./__application/scripts/buildPrepare.js",
"theme-prepare": "node ./__appset/themePrepare.js",
Expand All @@ -20,7 +20,8 @@
"version-i": "npm version patch",
"storybook": "storybook dev -p 8888",
"build-storybook": "storybook build",
"semantic-release": "semantic-release --branches master"
"semantic-release": "semantic-release --branches master",
"copyfiles": "copyfiles"
},
"lint-staged": {
"*.js": [
Expand Down Expand Up @@ -92,6 +93,7 @@
"babel-plugin-styled-components": "^2.1.4",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"classnames": "^2.3.2",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.54.0",
"eslint-config-airbnb": "^19.0.4",
Expand All @@ -113,10 +115,10 @@
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"mkdirp": "^3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.1.1",
"mkdirp": "^3.0.1"
"styled-components": "^6.1.1"
},
"files": [
"__build-es/**",
Expand Down

0 comments on commit 41bd8c7

Please sign in to comment.