Skip to content

Commit 67d0cd9

Browse files
committed
Change example-app dev:no-ssr script to dev
1 parent da02bc1 commit 67d0cd9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: cypress-io/github-action@v2
4949
with:
5050
cache-key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
51-
start: yarn --cwd ./example-app dev:no-ssr
51+
start: yarn --cwd ./example-app dev
5252
wait-on: 'http://localhost:3000'
5353
project: ./core
5454
browser: chrome

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
uses: cypress-io/github-action@v2
4949
with:
5050
cache-key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/yarn.lock') }}
51-
start: yarn --cwd ./example-app dev:no-ssr
51+
start: yarn --cwd ./example-app dev
5252
wait-on: 'http://localhost:3000'
5353
project: ./core
5454
browser: chrome

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,4 +130,4 @@
130130
"src/**/*.{ts,svelte}"
131131
]
132132
}
133-
}
133+
}

example-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"build": "rimraf build && svelte-kit build",
88
"build:gh-pages": "rimraf build && DEPLOY_TO_GH=true svelte-kit build && touch build/.nojekyll",
99
"deploy": "gh-pages -d build -t true",
10-
"dev": "svelte-kit dev",
11-
"dev:no-ssr": "NO_SSR=true svelte-kit dev",
10+
"dev": "NO_SSR=true svelte-kit dev",
11+
"dev:ssr": "svelte-kit dev",
1212
"format": "prettier --write *.cjs src/",
1313
"lint": "prettier --check --plugin-search-dir=. ./src && eslint --cache --ext .js,.ts,.svelte ./src",
1414
"lint:fix": "eslint --fix --cache --ext .js,.ts,.svelte ./src",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"example-app"
66
],
77
"scripts": {
8-
"start": "concurrently 'cd ./core && yarn exports:dev' 'cd example-app && yarn dev:no-ssr'"
8+
"start": "concurrently 'cd ./core && yarn exports:dev' 'cd example-app && yarn dev'"
99
},
1010
"devDependencies": {
1111
"concurrently": "^6.2.1"

0 commit comments

Comments
 (0)