Skip to content

Commit

Permalink
Merge pull request #57 from ForkPoint/develop
Browse files Browse the repository at this point in the history
Develop Release
  • Loading branch information
Robbie Datkov authored Jun 24, 2020
2 parents 3405e79 + 7c21228 commit 7efb35c
Show file tree
Hide file tree
Showing 89 changed files with 8,633 additions and 3,669 deletions.
22 changes: 0 additions & 22 deletions .eslintrc.js

This file was deleted.

8 changes: 8 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "airbnb-base",

"rules": {
"no-console": "off",
"prefer-arrow-callback": "off"
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules
.vscode/
49 changes: 49 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Davos Watch",
"program": "${workspaceFolder}/bin/davos.js",
"cwd": "${workspaceFolder}/../davos-sample-project",
"args": [
"watch"
],
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "node",
"request": "launch",
"name": "Davos Create",
"program": "${workspaceFolder}/bin/davos.js",
"cwd": "${workspaceFolder}/../davos-sample-project",
"args": [
"create"
],
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart"
},
{
"type": "node",
"request": "launch",
"name": "Davos Split",
"program": "${workspaceFolder}/bin/davos.js",
"cwd": "${workspaceFolder}/../../bee/tfg",

"args": [
"meta",
"split",
"sites/site_template/meta/system-objecttype-extensions.xml",
"--out",
"sites/site_template/meta"
],
"outputCapture": "std",
"internalConsoleOptions": "openOnSessionStart"
}
]
}
Loading

0 comments on commit 7efb35c

Please sign in to comment.