Skip to content

Commit 9468b41

Browse files
author
Crhistian Ramirez
committed
🔖 v4.0.0-1 alpha release
1 parent c6c8b95 commit 9468b41

969 files changed

Lines changed: 61815 additions & 130817 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
node_modules
1+
node_modules
2+
dist
3+
.rpt2_cache
4+
templateData.json
5+
yarn-error.log
6+
codegen/handlebars-extensions.js
7+
codegen/hooks.js

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false # disables generation of package-lock json since we use yarn

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
dist
2+
src

.prettierrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"printWidth": 80,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": false,
6+
"singleQuote": true,
7+
"trailingComma": "es5",
8+
"bracketSpacing": true,
9+
"arrowParens": "avoid",
10+
"quoteProps": "preserve",
11+
"parser": "typescript"
12+
}

.publishrc

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"validations": {
3+
"vulnerableDependencies": true,
4+
"uncommittedChanges": true,
5+
"untrackedFiles": true,
6+
"sensitiveData": true,
7+
"branch": "staging",
8+
"gitTag": true
9+
},
10+
"confirm": true,
11+
"publishCommand": "npm publish",
12+
"publishTag": "beta",
13+
"prePublishScript": "npm run build",
14+
"postPublishScript": false
15+
}

.swagger-codegen-ignore

Lines changed: 0 additions & 23 deletions
This file was deleted.

.swagger-codegen/VERSION

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 0 additions & 7 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [{
4+
"name": "Debug Jest Tests",
5+
"type": "node",
6+
"request": "launch",
7+
"runtimeArgs": [
8+
"--inspect-brk",
9+
"${workspaceRoot}/node_modules/jest/bin/jest.js",
10+
"--runInBand"
11+
],
12+
"console": "integratedTerminal",
13+
"internalConsoleOptions": "neverOpen",
14+
"port": 9229
15+
}]
16+
}

.vscode/settings.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"beautify.ignore": "**/*",
3+
"editor.formatOnSave": false,
4+
"[handlebars]": {
5+
"editor.formatOnSave": false
6+
},
7+
"editor.codeActionsOnSave": {
8+
"source.fixAll.eslint": true
9+
}
10+
}

0 commit comments

Comments
 (0)