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

feat: liveview v2 #209

Closed
wants to merge 14 commits into from
Closed
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules
test/platform/
coverage/
build/
dist
coverage
build
17 changes: 0 additions & 17 deletions .eslintrc

This file was deleted.

31 changes: 31 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = {
root: true,
rules: {
'eol-last': ['error', 'always'],
semi: ['error', 'always']
},
overrides: [
{
files: ['*.ts'],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would +typescript in eslint-config-axway fit here or are you looking for some specific rules?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, i totally forgot that we have a TypeScript config in there as well. I'll give it a look.

parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./tsconfig.eslint.json', './packages/*/tsconfig.json'],
},
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
]
},
{
files: ['*.js'],
extends: 'axway/env-node',
rules: {
'array-bracket-spacing': ['error', 'never'],
indent: ['error', 2]
}
}
]
};
48 changes: 40 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,40 @@
node_modules
.DS_Store
junit_report.xml
coverage/
retirejs.output.json
build/liveview.es6.js
.nyc_output/
build/
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Coverage directory used by tools like istanbul
coverage

# Jest reports
junit.xml

# Dependency directories
node_modules/
jspm_packages/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# TypeScript output folders
dist/

# TypeScript incremental compilation cache
*.tsbuildinfo
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ library 'pipeline-library'

buildNPMPackage {
projectKey = 'TIMOB'
// nodeVersion = '6.9.5'
nodeVersion = '12.18.0'
// tags, publishes, updates JIRA only for master branch builds
// records unit test and code coverage results
// does nsp/retire checks and uses custom warnings publisher parser to record warnings on Jenkins (not fortify server)
Expand Down
86 changes: 0 additions & 86 deletions bin/liveview

This file was deleted.

20 changes: 0 additions & 20 deletions bin/liveview-help

This file was deleted.

53 changes: 0 additions & 53 deletions bin/liveview-install

This file was deleted.

47 changes: 0 additions & 47 deletions bin/liveview-rm

This file was deleted.

60 changes: 0 additions & 60 deletions bin/liveview-run

This file was deleted.