From edce36c59e5e8da272a92bcb8a9bae8a51f66730 Mon Sep 17 00:00:00 2001 From: Daniil Kolesnikov Date: Fri, 30 Aug 2024 05:26:15 +0500 Subject: [PATCH] fix: code block formatting (#149) Fix code block formatting on [Building and Testing](https://spicetify.app/docs/development/spicetify-creator/building-and-testing) page. --- .../spicetify-creator/building-and-testing.md | 42 +++++++++---------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/docs/development/spicetify-creator/building-and-testing.md b/docs/development/spicetify-creator/building-and-testing.md index 06ea1a1..ae71497 100644 --- a/docs/development/spicetify-creator/building-and-testing.md +++ b/docs/development/spicetify-creator/building-and-testing.md @@ -12,14 +12,14 @@ Open a terminal in the project's directory and run this: - + ```shell npm run build - + ``` - + ```shell yarn run build - + ``` @@ -27,20 +27,20 @@ Then make sure you've added your app to Spicetify's config by running this: - + ```shell spicetify config extensions my-app.js - + ``` - + ```shell spicetify config custom_apps my-app - + ``` Finally, do -``` +```shell spicetify apply ``` @@ -54,14 +54,14 @@ Watching means that it'll rebuild the app every time the code changes. Go into your project's directory and enter the following command: - + ```shell npm run watch - + ``` - + ```shell yarn run watch - + ``` @@ -69,14 +69,14 @@ Then, run Spotify in watch mode: - + ```shell spicetify watch -le - + ``` - + ```shell spicetify watch -la - + ``` @@ -86,14 +86,14 @@ If you want to upload the build files with your repository or just see them, you - + ```shell npm run build-local - + ``` - + ```shell yarn run build-local - + ```