Skip to content

Commit

Permalink
Merge pull request #143 from barrel/feature/logo-update
Browse files Browse the repository at this point in the history
Update plugin name and tagline
  • Loading branch information
tuanpham-barrel authored Jun 25, 2024
2 parents a3b1b62 + c1ea8ac commit 2ee0f6e
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { fileURLToPath, URL } from 'node:url'
import { HeadConfig, defineConfig } from 'vitepress'

export default defineConfig({
title: 'Volt - Shopify Vite Plugin',
title: 'Volt, a Vite plugin for Shopify development',
description: 'Vite integration for Shopify themes',
appearance: 'force-dark',

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/components/AboutBarrel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<div class="about-barrel__content">
<p>
Volt - Shopify Vite Plugin was developed by Barrel.<br />
Volt, a Vite plugin for Shopify development was developed by Barrel.<br />
Barrel partners with brands to design, build, and optimize web experiences.
</p>

Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const socialLinks = data.site.value?.themeConfig?.socialLinks || [];
<div class="footer">
<div class="container">
<div class="footer__logo">
<img src="/logo-footer.svg" alt="Volt - Shopify Vite Plugin" />
<img src="/logo-footer.svg" alt="Volt, a Vite plugin for Shopify development" />
</div>
<div class="footer__nav">
<ul class="footer-nav__list">
Expand Down
2 changes: 1 addition & 1 deletion docs/.vitepress/theme/components/HomeCallout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import BrandButtons from './BrandButtons.vue'
<div class="home-callout">
<div class="container">
<div class="home-callout-text">
Upgrade your Shopify theme with Volt - Shopify Vite Plugin
Upgrade your Shopify theme with Volt, a Vite plugin for Shopify development
</div>
<BrandButtons />
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/configuration.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Configuration Reference

The following reference covers all supported configuration options in Volt - Shopify Vite Plugin.
The following reference covers all supported configuration options in Volt, a Vite plugin for Shopify development.

::: code-group
```js [vite.config.js]
Expand Down
6 changes: 3 additions & 3 deletions docs/guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export default {
}
```

Volt - Shopify Vite Plugin does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
Volt, a Vite plugin for Shopify development does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
languages such as TypeScript, JSX, TSX, and Sass) within the `frontend/entrypoints` folder in the root of your project as entry points for Vite.

```
Expand All @@ -96,7 +96,7 @@ Read the [Configuration Reference](/guide/configuration) of the Shopify Vite Plu

### Loading your Scripts and Styles

Volt - Shopify Vite Plugin generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
Volt, a Vite plugin for Shopify development generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
to load your assets.

With your Vite entry points configured, you only need to reference them with the `vite-tag` snippet that you add to the `<head>` of your theme's layout:
Expand Down Expand Up @@ -233,7 +233,7 @@ You can pass the `preload_stylesheet` variable to the `vite-tag` snippet to enab

## Advanced Customization

Out of the box, Volt - Shopify Vite Plugin uses sensible conventions to help you add Vite with zero configuration to existing Shopify themes; however,
Out of the box, Volt, a Vite plugin for Shopify development uses sensible conventions to help you add Vite with zero configuration to existing Shopify themes; however,
sometimes you may need to customize the Plugin's behavior.

Every configuration option is described in the [Configuration Reference](/guide/configuration).
2 changes: 1 addition & 1 deletion docs/guide/plugins.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Recommended Plugins

Using Volt - Shopify Vite Plugin is even more enjoyable with the following Plugins.
Using Volt, a Vite plugin for Shopify development is even more enjoyable with the following Plugins.

## [vite-plugin-shopify-import-maps](https://github.com/slavamak/vite-plugin-shopify-import-maps)

Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: home

title: Volt - Shopify Vite Plugin
title: Volt, a Vite plugin for Shopify development
titleTemplate: Vite integration for Shopify themes by Barrel

features:
Expand Down
2 changes: 1 addition & 1 deletion packages/vite-plugin-shopify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

### Major Changes

Volt - Shopify Vite Plugin is an ESM-only package. To use it with [Vite 5](https://vitejs.dev/blog/announcing-vite5), we need
Volt, a Vite plugin for Shopify development is an ESM-only package. To use it with [Vite 5](https://vitejs.dev/blog/announcing-vite5), we need
to add `"type": "module"` to the `package.json` of our projects OR change the extension of our Vite config file to `.mjs`/`.mts`.

- Vite 5 support ([#89](https://github.com/barrel/shopify-vite/pull/89))
Expand Down
4 changes: 2 additions & 2 deletions packages/vite-plugin-shopify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export default {
}
```

Volt - Shopify Vite Plugin does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
Volt, a Vite plugin for Shopify development does not require you to specify the entry points for your theme. By default, it treats JavaScript and CSS files (including preprocessed
languages such as TypeScript, JSX, TSX, and Sass) within the `frontend/entrypoints` folder in the root of your project as entry points for Vite.

```
Expand All @@ -64,7 +64,7 @@ languages such as TypeScript, JSX, TSX, and Sass) within the `frontend/entrypoin

### Adding scripts and styles to your theme

Volt - Shopify Vite Plugin generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
Volt, a Vite plugin for Shopify development generates a `vite-tag` snippet which includes `<script>` and `<link>` tags, and all the liquid logic needed
to load your assets.

With your Vite entry points configured, you only need to reference them with the `vite-tag` snippet that you add to the `<head>` of your theme's layout:
Expand Down

0 comments on commit 2ee0f6e

Please sign in to comment.