Skip to content

Commit

Permalink
chore: use bash instead of shell for prism
Browse files Browse the repository at this point in the history
  • Loading branch information
blakebyrnes committed Oct 9, 2024
1 parent e748965 commit 05a848a
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion datastore/main/.env.defaults
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARGON_MAINCHAIN_URL=
ARGON_GENESIS_UTC_TIME=1,728,396,000,000
ARGON_GENESIS_UTC_TIME=1,728,448,440,000
ARGON_TICK_DURATION_MILLIS=60000
ARGON_NTP_SERVER=#pool.ntp.org
ARGON_CHANNEL_HOLD_EXPIRATION_TICKS=60
2 changes: 1 addition & 1 deletion datastore/main/.env.production
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
ARGON_MAINCHAIN_URL=wss://rpc.testnet.argonprotocol.org
ARGON_GENESIS_UTC_TIME=1,728,396,000,000
ARGON_GENESIS_UTC_TIME=1,728,448,440,000
2 changes: 1 addition & 1 deletion datastore/main/.env.test
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
ARGON_TICK_DURATION_MILLIS=2000
ARGON_CHANNEL_HOLD_EXPIRATION_TICKS=2
ARGON_GENESIS_UTC_TIME=1,728,396,000,000
ARGON_GENESIS_UTC_TIME=1,728,448,440,000
2 changes: 1 addition & 1 deletion website/babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
],
"plugins": [
["prismjs", {
"languages": ["javascript", "shell", "typescript", "css", "html", "json", "ini"],
"languages": ["javascript", "bash", "typescript", "css", "html", "json", "ini"],
}]
]
}
4 changes: 2 additions & 2 deletions website/src/pages/DeveloperEnvironment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@
<h2 class="font-bold text-xl mt-10">Install It à La Carte</h2>
<p class="w-8/12">You can install most of the Developer Desktop tools as individual npm packages. You won't get the tight OS integrations and UI enhacements, but hey, at least you have options.</p>

<Prism language="shell" class="w-7/12">
<Prism language="bash" class="w-7/12">
npm install @ulixee/cloud
</Prism>
<Prism language="shell" class="w-7/12">
<Prism language="bash" class="w-7/12">
npm install @ulixee/chromealive
</Prism>
</MainLayout>
Expand Down
8 changes: 4 additions & 4 deletions website/src/pages/GettingStarted.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<p>Creating a Ulixee project is the same as any other Node project — make the directory, initialize npm and install your depdencies.</p>

<label>Run These Commands:</label>
<Prism language="shell" :useUlixeeTheme="false">
<Prism language="bash" :useUlixeeTheme="false">
mkdir everyone-needs-a-hero
cd everyone-needs-a-hero
npm init
Expand All @@ -77,7 +77,7 @@
<div class="text-3xl">Oh, and One More Thing</div>
<p>If you haven't installed <router-link to="developer-desktop">Ulixee Developer Desktop</router-link> then you'll need to manually setup Ulixee Cloud:</p>

<Prism language="shell" :useUlixeeTheme="false">
<Prism language="bash" :useUlixeeTheme="false">
npm install @ulixee/cloud
</Prism>
</div>
Expand All @@ -89,7 +89,7 @@
Add Hero to Package.json
</header>

<Prism language="shell" :useUlixeeTheme="false" class="w-6/12">
<Prism language="bash" :useUlixeeTheme="false" class="w-6/12">
npm install @ulixee/hero
</Prism>
</section>
Expand Down Expand Up @@ -124,7 +124,7 @@
<section class="h-screen px-24" ref="section3">
<header class="text-3xl">Turn On ChromeAlive</header>

<Prism language="shell" :useUlixeeTheme="false">
<Prism language="bash" :useUlixeeTheme="false">
npm install @ulixee/chromealive
</Prism>

Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/data-tools/chromealive/Example.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Use NPM or Yarn to install Hero and ChromeAlive into your local project.
</p>

<Prism language="shell">
<Prism language="bash">
npm install @ulixee/hero
npm install @ulixee/chromealive
</Prism>
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/data-tools/cloud/Example.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
The easiest way to start Ulixee Cloud is with our one-line NPX command -- you don't even need to install it through NPM or Yarn beforehand.
</p>

<Prism language="shell">
<Prism language="bash">
npx @ulixee/cloud start
</Prism>

Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/data-tools/datastore/Example.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Install both Datastore and Hero with a single NPM/Yarn command.
</p>

<Prism language="shell">
<Prism language="bash">
npm install @ulixee/datastore-plugins-hero
</Prism>

Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/data-tools/hero/Example.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
Use NPM or Yarn to install Hero into your local project.
</p>

<Prism language="shell">npm install @ulixee/hero</Prism>
<Prism language="bash">npm install @ulixee/hero</Prism>

<h2 class="font-bold mt-8">Create Your First Hero Script</h2>

Expand Down

0 comments on commit 05a848a

Please sign in to comment.