Skip to content

Commit

Permalink
Merge pull request #139 from WPS/angular-version
Browse files Browse the repository at this point in the history
Port to Angular TS
  • Loading branch information
tdymel authored Dec 20, 2023
2 parents 69d8bbf + 89fc982 commit 3d6825d
Show file tree
Hide file tree
Showing 372 changed files with 42,943 additions and 26,964 deletions.
3 changes: 0 additions & 3 deletions .babelrc

This file was deleted.

15 changes: 11 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# top-most EditorConfig file
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

14 changes: 0 additions & 14 deletions .eslintrc

This file was deleted.

15 changes: 8 additions & 7 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

**Describe the bug**
Expand All @@ -13,6 +12,7 @@ assignees: ''
**To Reproduce**
[If applicable, attach a .dst file. ]
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Click on '....'
Expand All @@ -25,9 +25,10 @@ Steps to reproduce the behavior:
[If applicable, add screenshots to help explain your problem.]

**Desktop (please complete the following information):**
- Modeler Version: v0.4.0
- Browser: [e.g. chrome 71.0]
- OS: [e.g. Windows 10]

- Modeler Version: v0.4.0
- Browser: [e.g. chrome 71.0]
- OS: [e.g. Windows 10]

**Additional context**
[Add any other context about the problem here.]
7 changes: 3 additions & 4 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

title: ""
labels: ""
assignees: ""
---

**Is your feature request related to a problem? Please describe.**
Expand Down
55 changes: 50 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,52 @@
.DS_Store
node_modules
build
dist
dist_build
# See http://help.github.com/ignore-files/ for more about ignoring files.

# compiled output
/build
/dist_build
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules

# profiling files
chrome-profiler-events*.json
speed-measure-plugin*.json

# IDEs and editors
/.project
.idea
.classpath
.c9/
*.launch
.settings/
*.sublime-workspace
*.iml

# IDE - VSCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings

# System Files
.DS_Store
Thumbs.db
*.xml
/.angular/
16 changes: 0 additions & 16 deletions .vscode/launch.json

This file was deleted.

6 changes: 0 additions & 6 deletions .vscode/settings.json

This file was deleted.

2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ RUN npm run bundle

# Runtime stage
FROM nginx:1.22-alpine
COPY --from=build-stage /app/build /usr/share/nginx/html
COPY --from=build-stage /app/dist_build/egon /usr/share/nginx/html
133 changes: 0 additions & 133 deletions Gruntfile.js

This file was deleted.

Loading

0 comments on commit 3d6825d

Please sign in to comment.