Skip to content

Commit 3421657

Browse files
committed
remove travis
1 parent 4061a04 commit 3421657

File tree

2 files changed

+6
-53
lines changed

2 files changed

+6
-53
lines changed

.travis.yml

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

packages/graphql-playground-electron/package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"name": "playground",
44
"productName": "GraphQL Playground",
55
"homepage": "https://github.com/graphcool/graphql-playground",
6+
"repository": "graphcool/graphql-playground",
67
"description": "Playground app",
78
"version": "1.0.0",
89
"author": {
@@ -12,14 +13,14 @@
1213
},
1314
"main": "lib/main.js",
1415
"scripts": {
15-
"build": "rm -rf ./dist && NODE_ENV=production GRAPHQL_ENDPOINT=$BACKEND_ADDR/system webpack --config webpack.config.build.js && cp -r static/* dist",
16-
"build-electron": "npm run compile; npm run build; cp -r dist lib; rm -rf ./build-electron && electron-builder",
17-
"release": "npm run build-electron",
16+
"build-ts": "rm -rf lib && tsc --target es5",
17+
"build-webpack": "rm -rf ./dist && NODE_ENV=production GRAPHQL_ENDPOINT=$BACKEND_ADDR/system webpack --config webpack.config.build.js && cp -r static/* dist",
18+
"build": "npm run build-ts && npm run build-webpack && cp -r dist lib && rm -rf ./build-electron",
19+
"release": "npm run build && electron-builder -lmw",
1820
"library": "rm -rf .happypack && NODE_ENV=production webpack --config webpack.library.js -p",
1921
"lint": "tslint \"src/**/*.ts{,x}\" && lint-staged",
20-
"start": "yarn run compile; concurrently 'yarn react-start' 'wait-on http://localhost:4040/ && yarn electron-start'",
22+
"start": "yarn run compile && concurrently 'yarn react-start' 'wait-on http://localhost:4040/ && yarn electron-start'",
2123
"react-start": "webpack-dev-server --hot --profile --history-api-fallback --host 0.0.0.0 --port 4040",
22-
"compile": "rm -rf lib; tsc --target es5",
2324
"electron-start": "electron lib/main",
2425
"stats": "NODE_ENV=production webpack --config webpack.library.js --profile --json > stats.json",
2526
"test": "npm run lint",

0 commit comments

Comments
 (0)