mirror of
https://github.com/valitydev/fe-core.git
synced 2024-11-06 02:25:18 +00:00
init
This commit is contained in:
commit
44f1047cb0
14
.github/workflows/test.yaml
vendored
Normal file
14
.github/workflows/test.yaml
vendored
Normal 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
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
lib
|
||||
.idea
|
3
.prettierignore
Normal file
3
.prettierignore
Normal file
@ -0,0 +1,3 @@
|
||||
package.json
|
||||
package-lock.json
|
||||
node_modules
|
5
.prettierrc
Normal file
5
.prettierrc
Normal file
@ -0,0 +1,5 @@
|
||||
{
|
||||
"printWidth": 120,
|
||||
"singleQuote": true,
|
||||
"tabWidth": 4
|
||||
}
|
3
README.md
Normal file
3
README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Frontend Libs Monorepo
|
||||
|
||||
- [NPM Workspaces](https://docs.npmjs.com/cli/v7/using-npm/workspaces)
|
13
lerna.json
Normal file
13
lerna.json
Normal 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
13141
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
package.json
Normal file
23
package.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user