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

【feature】Backend UI #1128

Merged
merged 1 commit into from
Mar 17, 2023
Merged
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
6 changes: 1 addition & 5 deletions sermant-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -271,10 +271,9 @@
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>${frontend-maven-plugin.version}</version>
<configuration>
<workingDirectory>${webapp.path}</workingDirectory>
<nodeVersion>v8.1.0</nodeVersion>
<nodeVersion>v16.14.0</nodeVersion>
</configuration>
<executions>
<execution>
Expand All @@ -288,9 +287,6 @@
<goals>
<goal>npm</goal>
</goals>
<configuration>
<arguments>install --registry=https://registry.npmjs.org/</arguments>
</configuration>
</execution>
<execution>
<id>npm run build</id>
Expand Down
Binary file added sermant-backend/src/main/webapp/.DS_Store
Binary file not shown.
18 changes: 0 additions & 18 deletions sermant-backend/src/main/webapp/frontend/.babelrc

This file was deleted.

9 changes: 0 additions & 9 deletions sermant-backend/src/main/webapp/frontend/.editorconfig

This file was deleted.

5 changes: 0 additions & 5 deletions sermant-backend/src/main/webapp/frontend/.eslintignore

This file was deleted.

29 changes: 0 additions & 29 deletions sermant-backend/src/main/webapp/frontend/.eslintrc.js

This file was deleted.

28 changes: 28 additions & 0 deletions sermant-backend/src/main/webapp/frontend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
.DS_Store
dist
dist-ssr
coverage
*.local

/cypress/videos/
/cypress/screenshots/

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
10 changes: 0 additions & 10 deletions sermant-backend/src/main/webapp/frontend/.postcssrc.js

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["Vue.volar", "Vue.vscode-typescript-vue-plugin"]
}
34 changes: 11 additions & 23 deletions sermant-backend/src/main/webapp/frontend/README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,18 @@
# frontend
# backend-ui
## Project Setup

> A Vue.js project

## Build Setup

``` bash
# install dependencies
```sh
npm install
```

# serve with hot reload at localhost:8080
npm run dev

# build for production with minification
npm run build

# build for production and view the bundle analyzer report
npm run build --report
### Compile and Hot-Reload for Development

# run unit tests
npm run unit
```sh
npm run dev
```

# run e2e tests
npm run e2e
### Type-Check, Compile and Minify for Production

# run all tests
npm test
```sh
npm run build
```

For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
8 changes: 8 additions & 0 deletions sermant-backend/src/main/webapp/frontend/auto-imports.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-auto-import
export {}
declare global {

}
41 changes: 0 additions & 41 deletions sermant-backend/src/main/webapp/frontend/build/build.js

This file was deleted.

54 changes: 0 additions & 54 deletions sermant-backend/src/main/webapp/frontend/build/check-versions.js

This file was deleted.

Binary file not shown.
101 changes: 0 additions & 101 deletions sermant-backend/src/main/webapp/frontend/build/utils.js

This file was deleted.

Loading