Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.15.0 #80

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"root": true,
"extends": ["@roborox/default", "prettier", "prettier/@typescript-eslint"]
"extends": ["@rarible/eslint-config-ts", "prettier"]
}
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn commitlint --edit $1
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

yarn run precommit
8 changes: 8 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
node_modules
.husky
.vscode
.yarn
.idea
build
*.md
*.d.ts
10 changes: 0 additions & 10 deletions .prettierrc

This file was deleted.

1 change: 1 addition & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require("@rarible/prettier");
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@Library('shared-library') _

def pipelineConfig = [
"JSpublicLibrary": "true"
"pkgRepoName": "npmjs-org"
]
pipelinePackageRelease(pipelineConfig)
55 changes: 0 additions & 55 deletions lerna-debug.log

This file was deleted.

26 changes: 12 additions & 14 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
{
"packages": [
"packages/*"
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.14.2",
"command": {
"publish": {
"allowBranch": "master",
"registry": "https://registry.npmjs.org/",
"message": "chore: bump versions after release",
"yes": true
}
}
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.15.0-alpha.3",
"command": {
"publish": {
"allowBranch": ["master", "0.15.x"],
"registry": "https://registry.npmjs.org/",
"message": "chore: bump versions after release",
"yes": true
}
}
}
128 changes: 77 additions & 51 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,79 @@
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"build": "sh build-all.sh",
"build:atom": "yarn workspace @rixio/atom run build",
"build:cache": "yarn workspace @rixio/cache run build",
"build:form-store": "yarn workspace @rixio/form-store run build",
"build:lens": "yarn workspace @rixio/lens run build",
"build:list": "yarn workspace @rixio/list run build",
"build:list-react": "yarn workspace @rixio/list-react run build",
"build:react": "yarn workspace @rixio/react run build",
"build:wrapped": "yarn workspace @rixio/wrapped run build",
"clean": "yarn workspaces run clean",
"link": "lerna link",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"prettify": "run-s prettify:*",
"prettify:code": "prettier --write **/src/**/*",
"prettify:packages": "lerna exec -- sort-package-json && sort-package-json",
"release": "lerna publish from-package",
"test": "yarn workspaces run test",
"verify": "yarn workspaces run verify",
"version": "lerna version"
},
"lint-staged": {
"**/src/package.json": [
"yarn run prettify:packages"
],
"package.json": [
"yarn run prettify:packages"
]
},
"dependencies": {
"immutable": "4.0.0-rc.12",
"react": "16.13.1",
"react-native": "0.63.3",
"rxjs": "6.6.3"
},
"devDependencies": {
"@roborox/eslint-config-default": "2.2.0",
"eslint": "7.10.0",
"eslint-config-prettier": "6.11.0",
"husky": "4.3.0",
"lerna": "^3.20.2",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"sort-package-json": "^1.50.0"
}
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap && lerna link",
"build": "sh build-all.sh",
"build:atom": "yarn workspace @rixio/atom run build",
"build:cache": "yarn workspace @rixio/cache run build",
"build:form-store": "yarn workspace @rixio/form-store run build",
"build:lens": "yarn workspace @rixio/lens run build",
"build:list": "yarn workspace @rixio/list run build",
"build:list-react": "yarn workspace @rixio/list-react run build",
"build:react": "yarn workspace @rixio/react run build",
"build:wrapped": "yarn workspace @rixio/wrapped run build",
"clean": "yarn workspaces run clean",
"link": "lerna link",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx ./ --fix",
"prepare": "husky install",
"prettify": "run-s prettify:*",
"prettify:code": "prettier --write **/src/**/*",
"prettify:packages": "lerna exec -- sort-package-json && sort-package-json",
"release": "lerna publish from-package",
"test": "yarn workspaces run test",
"precommit": "run-s lint verify lint-staged",
"verify": "yarn workspaces run verify",
"lint-staged": "lint-staged",
"version": "lerna version"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts,*.tsx,*.js,*.jsx": [
"yarn run prettify:code"
],
"**/src/package.json": [
"yarn run prettify:packages"
],
"package.json": [
"yarn run prettify:packages"
]
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@rarible/eslint-config-ts": "~0.10.0-alpha.10",
"@rarible/prettier": "^0.10.0-alpha.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/jest": "^29.5.0",
"@types/react": "16.9.41",
"@types/react-dom": "^16.9.8",
"@types/react-virtualized": "9.21.10",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"joi": "^17.12.1",
"lerna": "^6.6.1",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rxjs": "^6.6.7",
"sort-package-json": "^1.50.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.3",
"webpack": "~5.72.0"
}
}
Loading