This commit is contained in:
Rinat Arsaev 2021-04-08 17:51:06 +03:00
commit 44f1047cb0
9 changed files with 13206 additions and 0 deletions

14
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,14 @@
name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 15
- run: npm run bootstrap
- run: npm run test

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
node_modules
lib
.idea

1
.npmrc Normal file
View File

@ -0,0 +1 @@
@rbkmoney:registry=https://npm.pkg.github.com/

3
.prettierignore Normal file
View File

@ -0,0 +1,3 @@
package.json
package-lock.json
node_modules

5
.prettierrc Normal file
View File

@ -0,0 +1,5 @@
{
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4
}

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# Frontend Libs Monorepo
- [NPM Workspaces](https://docs.npmjs.com/cli/v7/using-npm/workspaces)

13
lerna.json Normal file
View File

@ -0,0 +1,13 @@
{
"npmClient": "npm",
"packages": ["packages/*"],
"version": "independent",
"command": {
"publish": {
"conventionalCommits": true
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}

13141
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "fe-root",
"version": "0.0.0",
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap",
"build": "lerna run build",
"test": "lerna run test",
"clean": "shx rm -rf **/node_modules",
"release": "lerna run build & lerna publish --no-commit-hooks"
},
"workspaces": [
"./packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/rbkmoney/fe-core"
},
"devDependencies": {
"lerna": "^4.0.0",
"shx": "^0.3.3"
}
}