Skip to content

Commit 554ee02

Browse files
Moves arc config to package.json
1 parent 87784f0 commit 554ee02

File tree

7 files changed

+32
-223
lines changed

7 files changed

+32
-223
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,3 @@ updates:
55
schedule:
66
interval: daily
77
open-pull-requests-limit: 99
8-
9-
- package-ecosystem: npm
10-
directory: "/src/http/get-api"
11-
schedule:
12-
interval: daily
13-
open-pull-requests-limit: 99
File renamed without changes.

app.arc

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

package.json

Lines changed: 32 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,55 @@
22
"name": "begin-app",
33
"version": "0.0.0",
44
"description": "Begin basic Vue app + API",
5+
"arc": {
6+
"app": "vue-app",
7+
"http": [
8+
{
9+
"/api": {
10+
"method": "get",
11+
"src": "/api"
12+
}
13+
}
14+
],
15+
"static": {
16+
"folder": "dist"
17+
},
18+
"tables": [
19+
{
20+
"data": {
21+
"scopeID": "*String",
22+
"dataID": "**String",
23+
"ttl": "TTL"
24+
}
25+
}
26+
]
27+
},
528
"scripts": {
629
"start": "run-s build api",
7-
"api": "cross-env NODE_ENV=testing ARC_LOCAL=1 npx sandbox",
30+
"api": "npx sandbox",
831
"serve": "vue-cli-service serve",
932
"build": "vue-cli-service build",
1033
"lint": "eslint src --ignore-pattern node_modules --fix",
11-
"test": "run-s test:api test:unit",
12-
"test:api": "cross-env NODE_ENV=testing PORT=6666 tape test/*-test.js test/**/*-test.js | tap-spec",
13-
"test:unit": "vue-cli-service test:unit"
34+
"test": "vue-cli-service test:unit"
1435
},
1536
"devDependencies": {
16-
"@architect/sandbox": "^3.3",
17-
"@begin/data": "latest",
1837
"@vue/cli-plugin-babel": "^4.5.11",
1938
"@vue/cli-plugin-eslint": "^4.5.7",
2039
"@vue/cli-plugin-unit-mocha": "^4.5.11",
2140
"@vue/cli-service": "^4.5.11",
2241
"@vue/test-utils": "1.1.3",
23-
"babel-eslint": "^10.1.0",
2442
"chai": "^4.3.0",
2543
"core-js": "^3.8.3",
2644
"cross-env": "^7.0.3",
27-
"eslint": "^7.19.0",
28-
"eslint-plugin-vue": "^7.5.0",
2945
"npm-run-all": "^4.1.5",
30-
"tap-spec": "^5.0.0",
31-
"tape": "^5.1.1",
32-
"tiny-json-http": "^7.3.0",
3346
"vue": "^2.6.12",
3447
"vue-template-compiler": "^2.6.12"
3548
},
36-
"dependencies": {}
49+
"dependencies": {
50+
"@architect/sandbox": "^3.3.7",
51+
"@begin/data": "^1.2.3",
52+
"babel-eslint": "^10.1.0",
53+
"eslint": "^6.8.0",
54+
"eslint-plugin-vue": "^7.7.0"
55+
}
3756
}

test/.eslintrc.js

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

test/data-test.js

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

test/example-test.js

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

0 commit comments

Comments
 (0)