refactor(dev): rename dev-flows to example

This commit is contained in:
moklick
2020-10-06 11:54:02 +02:00
parent 49906ddda8
commit 7ec68efea6
31 changed files with 4 additions and 4 deletions

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

+4 -4
View File
@@ -12,10 +12,10 @@
"scripts": {
"build": "rollup -c --environment NODE_ENV:production",
"start": "rollup -w -c",
"dev": "npm run build && npm start & cd dev-flows && npm start",
"start:devflows": "npm run build && cd dev-flows && npm start",
"dev:wait": "start-server-and-test start:devflows http-get://localhost:3000",
"build:devflows": "npm install && npm run build && cd dev-flows && npm install && npm run build",
"dev": "npm run build && npm start & cd example && npm start",
"start:dev": "npm run build && cd example && npm start",
"dev:wait": "start-server-and-test start:dev http-get://localhost:3000",
"build:dev": "npm install && npm run build && cd example && npm install && npm run build",
"build:website": "cd website && npm install && GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true npm run build",
"cy:open": "cypress open",
"cypress": "npm run dev:wait cy:open",