Skip to content

Commit

Permalink
Merge pull request #45 from mrbandler/release/v3.0.0
Browse files Browse the repository at this point in the history
Release/v3.0.0
  • Loading branch information
thisisevanfox authored Nov 28, 2022
2 parents 6c92292 + 0404ccd commit 9c951ce
Show file tree
Hide file tree
Showing 27 changed files with 3,912 additions and 395 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test/gen/servicdefinitions.json
14 changes: 11 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"env": {
"browser": true,
"es2017": true,
"node": true
},
"plugins": ["prettier", "@typescript-eslint"],
"extends": [
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"rules": {
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-namespace": "off"
"@typescript-eslint/no-namespace": "error",
"@typescript-eslint/prefer-namespace-keyword": "off"
}
}
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/

- name: Download cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/

- name: Download cache
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/

- name: Publish to npm
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/

- name: Download cache
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Setup node environment
uses: actions/setup-node@v2
with:
node-version: 12
node-version: 14
registry-url: https://registry.npmjs.org/

- name: Publish to npm
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ $RECYCLE.BIN/

# Custom ignores
bin
test/service.ts
test/service.ts.json
test/gen/**/*.ts
test/gen/**/*.json
test/dist

.yarn/*
Expand Down
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"aaron-bond.better-comments",
"esbenp.prettier-vscode",
"oouo-diogo-perdigao.docthis",
"SAPSE.vscode-cds"
]
}
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
"args": [
"${workspaceRoot}/src/cli.ts",
"--cds",
"./service.cds",
"./test/srv/service.cds",
"--output",
"./service.ts",
"./test/gen/",
"--prefix",
"I",
"--format",
Expand Down
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
{
"eslint.validate": ["javascript", "typescript"],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.exclude": {
"**/node_modules": true,
Expand Down
Loading

0 comments on commit 9c951ce

Please sign in to comment.