Skip to content

Commit

Permalink
Merge branch 'main' into feat/breadcrumb
Browse files Browse the repository at this point in the history
  • Loading branch information
denilsonrp authored Jul 14, 2023
2 parents 4fd5bbb + f358f90 commit 71b1260
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"packages/core": "0.1.0-alpha.17",
"packages/tokens": "0.1.0-alpha.19"
"packages/tokens": "0.1.0-alpha.20"
}
2 changes: 1 addition & 1 deletion package-lock.json

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

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@
"utils/*"
],
"scripts": {
"core:build": "nx build @juntossomosmais/atomium && npm run react:build",
"docs:build": "nx build @atomium/docs && nx build @atomium/docs-react",
"docs-react:start": "nx run @atomium/docs-react:start",
"lint:pre-commit": "eslint --resolve-plugins-relative-to . -c ./.eslintrc.json $(git diff --cached --name-only --diff-filter=AM | grep -E \"(.js$|.ts$)\") --cache --cache-location node_modules/.cache/eslint",
"core:build": "npx nx build @juntossomosmais/atomium && npm run react:build",
"docs:build": "npx nx build @atomium/docs && npx nx build @atomium/docs-react",
"docs-react:start": "npx nx run @atomium/docs-react:start",
"lint:pre-commit": "eslint --resolve-plugins-relative-to . -c ./.eslintrc.json $(git diff --cached --name-only --diff-filter=AM | grep -E \"(.js$|.ts$)\") --cache --cache-location node_modules/.cache/eslint",
"lint:styles": "stylelint '**/*.scss'",
"icons:build": "nx build @juntossomosmais/atomium-icons",
"postinstall": "npx husky install & nx build @juntossomosmais/atomium:prebuild && npm run icons:build && npm run core:build && npm run tokens:build",
"icons:build": "npx nx build @juntossomosmais/atomium-icons",
"postinstall": "npx husky install & npx nx build @juntossomosmais/atomium:prebuild && npm run icons:build && npm run core:build && npm run tokens:build",
"pre-commit": "lint-staged",
"prepare": "husky install",
"react:build": "cd packages/react && npm run build",
"start": "nx run-many --target=start --maxParallel=10 --exclude=@atomium/docs-react",
"test": "nx run @juntossomosmais/atomium:test",
"start": "npx nx run-many --target=start --maxParallel=10 --exclude=@atomium/docs-react",
"test": "npx nx run @juntossomosmais/atomium:test",
"test:ci": "npx nx affected --target=test:ci --base=origin/main --parallel",
"test:ci-merge": "npx nx affected --target=test:ci --base=origin/main~1 --head=origin/main --parallel",
"tokens:build": "nx build @juntossomosmais/atomium-tokens",
"tokens:publish": "npm run tokens:build && nx run @juntossomosmais/atomium-tokens:publish"
"tokens:build": "npx nx build @juntossomosmais/atomium-tokens",
"tokens:publish": "npm run tokens:build && npx nx run @juntossomosmais/atomium-tokens:publish"
},
"dependencies": {
"@stencil/core": "^3.2.1"
Expand Down
12 changes: 12 additions & 0 deletions packages/tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.1.0-alpha.20](https://github.com/juntossomosmais/atomium/compare/atomium-tokens-v0.1.0-alpha.19...atomium-tokens-v0.1.0-alpha.20) (2023-07-13)


### Features

* **tokens:** add rgb tokens ([#181](https://github.com/juntossomosmais/atomium/issues/181)) ([80d49d4](https://github.com/juntossomosmais/atomium/commit/80d49d4449841cc093e35955bdf94a06c601e2d2))


### Bug Fixes

* **tokens:** remove variable not used to remove sonar bug ([#180](https://github.com/juntossomosmais/atomium/issues/180)) ([017e834](https://github.com/juntossomosmais/atomium/commit/017e834ba2704643cb16537b2d50b9765402ccc6))

## [0.1.0-alpha.19](https://github.com/juntossomosmais/atomium/compare/atomium-tokens-v0.1.0-alpha.18...atomium-tokens-v0.1.0-alpha.19) (2023-07-04)


Expand Down
2 changes: 1 addition & 1 deletion packages/tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@juntossomosmais/atomium-tokens",
"version": "0.1.0-alpha.19",
"version": "0.1.0-alpha.20",
"description": "Tokens and variables for Atomium",
"access": "public",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"prerelease": true,
"release-as": "0.1.0-alpha.19",
"release-as": "0.1.0-alpha.20",
"packages": {
"packages/core": {},
"packages/tokens": {}
Expand Down

0 comments on commit 71b1260

Please sign in to comment.