Merge pull request #19 from aleleba/PR-847286

PR-847286: fixing missing dependency.
This commit is contained in:
Alejandro Lembke Barrientos 2023-02-10 21:43:22 -06:00 committed by GitHub
commit 7899602b97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 390 additions and 1440 deletions

View File

@ -12,7 +12,7 @@ jobs:
with: with:
node-version: 16 node-version: 16
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- run: npm ci - run: npm ci --legacy-peer-deps
- run: npm test - run: npm test
publish-npm: publish-npm:
@ -24,7 +24,7 @@ jobs:
with: with:
node-version: 16 node-version: 16
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- run: npm ci - run: npm ci --legacy-peer-deps
- run: npm publish --access=public - run: npm publish --access=public
env: env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}} NODE_AUTH_TOKEN: ${{secrets.npm_token}}

View File

@ -18,7 +18,7 @@ jobs:
node-version: 16 node-version: 16
cache: 'npm' cache: 'npm'
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- run: npm ci - run: npm ci --legacy-peer-deps
- run: npm test - run: npm test
test-build-package: test-build-package:
needs: test needs: test
@ -29,5 +29,5 @@ jobs:
with: with:
node-version: 16 node-version: 16
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- run: npm ci - run: npm ci --legacy-peer-deps
- run: npm run build - run: npm run build

1819
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@aleleba/create-react-component-library", "name": "@aleleba/create-react-component-library",
"version": "1.1.15", "version": "1.1.16",
"description": "A starter kit for create a React component Library with storybook", "description": "A starter kit for create a React component Library with storybook",
"bin": "./bin/cli.js", "bin": "./bin/cli.js",
"main": "dist/index.js", "main": "dist/index.js",
@ -39,6 +39,7 @@
"@babel/register": "^7.18.9", "@babel/register": "^7.18.9",
"@mdx-js/react": "^2.3.0", "@mdx-js/react": "^2.3.0",
"@storybook/addon-actions": "^6.5.16", "@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16", "@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16", "@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16", "@storybook/addon-links": "^6.5.16",