Skip to content

Commit

Permalink
fix(input): fix dev merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
aPreciado88 committed Aug 5, 2024
2 parents d750dc1 + d916ca4 commit 121561d
Show file tree
Hide file tree
Showing 124 changed files with 1,940 additions and 1,421 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/chromatic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version-file: package.json
- run: npm install
- run: npm --workspace="packages/calcite-design-tokens" run build
- run: |
npm install
npm --workspace="packages/calcite-design-tokens" run build
npm --workspace="packages/calcite-ui-icons" run build
- name: Publish to Chromatic
uses: chromaui/action@v11
with:
Expand Down
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"packages/calcite-components": "2.10.1",
"packages/calcite-components-react": "2.10.1",
"packages/calcite-components": "2.11.1",
"packages/calcite-components-react": "2.11.1",
"packages/calcite-design-tokens": "2.2.0",
"packages/calcite-ui-icons": "3.29.0",
"packages/calcite-ui-icons": "3.30.0",
"packages/eslint-plugin-calcite-components": "1.2.0",
"packages/calcite-components-angular/projects/component-library": "2.10.1"
"packages/calcite-components-angular/projects/component-library": "2.11.1"
}
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ npm install
Next, start the local Stencil development server on localhost:

```sh
npm start
npm run start:components
```

The demos will open in the browser after building. Edit the pages in [`packages/calcite-components/src/demos`](.packages/calcite-components/src/demos) to modify the component demos, such as changing attributes or adding content to slots. When adding a new demo page, make sure to add a link in [`packages/calcite-components/src/index.html`](./packages/calcite-components/src/index.html) so others can find it. You can also edit the component code in [`packages/calcite-components/src/components`](packages/calcite-components/src/components`./src/components), and the changes will be reflected in the demos.
Expand Down
3 changes: 2 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"command": {
"version": {
"conventionalCommits": true,
"allowBranch": ["main", "rc", "dev"]
"allowBranch": ["main", "rc", "dev"],
"exact": true
}
}
}
Loading

0 comments on commit 121561d

Please sign in to comment.