-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: transfer package to gravity-ui (#32)
Release-As: 1.0.0
- Loading branch information
Showing
9 changed files
with
103 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"extends": ["@yandex-cloud/eslint-config", "@yandex-cloud/eslint-config/server"], | ||
"extends": ["@gravity-ui/eslint-config", "@gravity-ui/eslint-config/server"], | ||
"root": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,14 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
|
||
name: release | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: yandex-cloud/ui-release-action@main | ||
with: | ||
github-token: ${{ secrets.YC_UI_BOT_GITHUB_TOKEN }} | ||
npm-token: ${{ secrets.YC_UI_BOT_NPM_TOKEN }} | ||
node-version: 14 | ||
- uses: gravity-ui/release-action@v1 | ||
with: | ||
github-token: ${{ secrets.GRAVITY_UI_BOT_GITHUB_TOKEN }} | ||
npm-token: ${{ secrets.GRAVITY_UI_BOT_NPM_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
registry=https://registry.npmjs.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
14 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"name": "@yandex-cloud/i18n", | ||
"description": "i18n library for Yandex Cloud UI services", | ||
"name": "@gravity-ui/i18n", | ||
"description": "i18n library for Gravity UI services", | ||
"version": "0.6.0", | ||
"license": "MIT", | ||
"main": "build/cjs/index.js", | ||
"module": "build/esm/index.js", | ||
"types": "build/esm/index.d.ts", | ||
"repository": "[email protected]:yandex-cloud/i18n", | ||
"repository": "[email protected]:gravity-ui/i18n", | ||
"scripts": { | ||
"build": "npm run build:clean && npm run build:compile", | ||
"build:compile": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json", | ||
|
@@ -26,9 +26,9 @@ | |
"devDependencies": { | ||
"@commitlint/cli": "15.0.0", | ||
"@commitlint/config-conventional": "15.0.0", | ||
"@gravity-ui/eslint-config": "^1.0.0", | ||
"@gravity-ui/tsconfig": "^1.0.0", | ||
"@types/jest": "27.4.1", | ||
"@yandex-cloud/eslint-config": "^1.0.0", | ||
"@yandex-cloud/tsconfig": "^1.0.0", | ||
"eslint": "8.3.0", | ||
"jest": "27.5.1", | ||
"ts-jest": "27.1.3", | ||
|
Oops, something went wrong.