Rename source folders
All checks were successful
forgejo/Procyon/seedling/pipeline/head This commit looks good
All checks were successful
forgejo/Procyon/seedling/pipeline/head This commit looks good
This commit is contained in:
parent
2398a7c8c9
commit
da23b80647
23 changed files with 4 additions and 4 deletions
12
source/common/.editorconfig
Normal file
12
source/common/.editorconfig
Normal file
|
@ -0,0 +1,12 @@
|
|||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = tab
|
||||
indent_size = 2
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = false
|
||||
insert_final_newline = false
|
24
source/common/.tsconfig.json
Normal file
24
source/common/.tsconfig.json
Normal file
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"noImplicitAny": true,
|
||||
"strictNullChecks": true,
|
||||
"strictFunctionTypes": true,
|
||||
"experimentalDecorators": true,
|
||||
"emitDecoratorMetadata": true,
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"esModuleInterop": true,
|
||||
"allowJs": true,
|
||||
"outDir": "build",
|
||||
"module": "commonjs",
|
||||
"target": "es6",
|
||||
"lib": [
|
||||
"es6",
|
||||
"dom"
|
||||
],
|
||||
},
|
||||
"exclude": [
|
||||
"./node_modules",
|
||||
"./src/**/__tests__/*.tsx"
|
||||
]
|
||||
}
|
7
source/common/Jenkinsfile
vendored
Normal file
7
source/common/Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
@Library('jenkins-lib')
|
||||
import FrontendBuild
|
||||
|
||||
FrontendBuild({
|
||||
name = '$(appName)'
|
||||
port = '$(appPort):80'
|
||||
})
|
2
source/common/gitignore
Normal file
2
source/common/gitignore
Normal file
|
@ -0,0 +1,2 @@
|
|||
build/
|
||||
node_modules/
|
3
source/common/npmrc
Normal file
3
source/common/npmrc
Normal file
|
@ -0,0 +1,3 @@
|
|||
always-auth=true
|
||||
@prokyon:registry=https://npm.romanjaros.dev
|
||||
@toolkit:registry=https://npm.romanjaros.dev
|
16
source/common/package.json
Normal file
16
source/common/package.json
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"name": "$(appName)",
|
||||
"version": "0.1.0",
|
||||
"author": "Roman Jaroš",
|
||||
"license": "ISC",
|
||||
"scripts": {
|
||||
"dev": "pnpm -r dev",
|
||||
"test": "pnpm -r test",
|
||||
"test:e2e": "pnpm -r test:e2e"
|
||||
},
|
||||
"dependencies": {},
|
||||
"devDependencies": {
|
||||
"@types/node": "18.11.0"
|
||||
},
|
||||
"peerDependencies": {}
|
||||
}
|
2
source/common/pnpm-workspace.yaml
Normal file
2
source/common/pnpm-workspace.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
packages:
|
||||
- "apps/*"
|
9
source/common/prettierrc
Normal file
9
source/common/prettierrc
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"useTabs": true,
|
||||
"tabWidth": 2,
|
||||
"semi": true,
|
||||
"singleQuote": true,
|
||||
"parser": "typescript",
|
||||
"printWidth": 120,
|
||||
"bracketSameLine": true
|
||||
}
|
5
source/common/sonar-project.properties
Normal file
5
source/common/sonar-project.properties
Normal file
|
@ -0,0 +1,5 @@
|
|||
sonar.projectKey=$(appName)
|
||||
sonar.projectName=$(appName)
|
||||
sonar.inclusions=apps/**
|
||||
sonar.coverage.exclusions=**/__tests__/**
|
||||
sonar.javascript.lcov.reportPaths=apps/**/jest/lcov.info
|
Loading…
Add table
Add a link
Reference in a new issue