Skip to content

Commit 645caa2

Browse files
committed
chore: wip
1 parent 539e066 commit 645caa2

File tree

20 files changed

+26
-26
lines changed

20 files changed

+26
-26
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ _By following these minor steps, Stacks is able to automatically release new ver
179179

180180
When you're all done, head over to the [repository][stacks], and click the big green `Compare & Pull Request` button that should appear after you've pushed changes to your fork.
181181

182-
Don't expect your PR to be accepted immediately or even accepted at all. Give the community time to vet it and see if it should be merged. Please don't be disheartened if it's not accepted. Your contribution is appreciated more than you can imagine, and even a unmerged PR can teach us a lot ❤️
182+
Don't expect your PR to be accepted immediately or even accepted at all. Give the community time to vet it and see if it should be merged. Please don't be disheartened if its not accepted. Your contribution is appreciated more than you can imagine, and even a unmerged PR can teach us a lot ❤️
183183

184184
[typescript]: https://www.typescriptlang.org
185185
[vue]: https://vuejs.org/

bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ if [ -n "$1" ]; then
1414
git clone https://github.com/stacksjs/stacks.git $1
1515
cd "$1" || exit 1
1616

17-
# Run the pkgx-install script (in case it's already installed, it will be updated to the latest version)
17+
# Run the pkgx-install script (in case its already installed, it will be updated to the latest version)
1818
"./storage/framework/scripts/pkgx-install"
1919

2020
echo "Project $1 has been created. Please open a new terminal, run 'bun run dev' to start the server."

docs/guide/composability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In concept, you can characterize a "composable library" as a collection of compo
2828

2929
>Think of Lodash for "functions," and minimal HTML for the "components."
3030
31-
## How do I know if it's right for me?
31+
## How do I know if its right for me?
3232

3333
When wanting to adapt the "Composability-First Design" pattern, you will want to ask the following questions to identify whether or not this design pattern is a fit for you:
3434

docs/guide/get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Get Started
22

3-
A core Stacks principle is to utilize sensible defaults. This means that it's incredibly easy to get started with this framework. However, Stacks is also very flexible and allows you to customize every aspect of it.
3+
A core Stacks principle is to utilize sensible defaults. This means that its incredibly easy to get started with this framework. However, Stacks is also very flexible and allows you to customize every aspect of it.
44

55
This guide will help you get started with your first Stacks project. Simply run the following command in your terminal:
66

resources/components/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Additionally, the `package.json` contains some useful snippets you likely want t
2323

2424
## 🤖 Usage
2525

26-
Because this project is optimized toward the development of easily reusable & composable component libraries, it's very easy to use (and distribute):
26+
Because this project is optimized toward the development of easily reusable & composable component libraries, its very easy to use (and distribute):
2727

2828
```vue
2929
<script setup lang="ts">

storage/framework/core/actions/src/deploy/create-receipt-rule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const s3 = new S3({ apiVersion: '2006-03-01' })
99

1010
// oddly, this somehow does not play well within a CDK construct
1111
// so we need to use the AWS SDK directly to create the rule
12-
// unsure whether it's an AWS or implementation issue
12+
// unsure whether its an AWS or implementation issue
1313

1414
// need to query S3 to get the bucket name, based on whether the name contains -email-
1515
// which is indicative of the email bucket created by the CDK construct

storage/framework/core/actions/src/domains/add.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ await updateNameservers(nameServers)
3333

3434
const registrar: string = (await whois(domain, true)).parsedData.Registrar
3535

36-
// usually for Route53 registered domains, we don't need to update create a hosted zone as it's already
37-
// done for us. But in case it's not, we still need to ensure it's created before we can deploy
36+
// usually for Route53 registered domains, we don't need to update create a hosted zone as its already
37+
// done for us. But in case its not, we still need to ensure its created before we can deploy
3838
if (registrar.includes('Amazon')) {
3939
if (options.deploy) {
4040
await runCommand('buddy deploy')

storage/framework/core/actions/src/generate/model-classes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class UserModel {
5858
if (prop in target)
5959
return target[prop]
6060

61-
// If it's a method on the UserModel, bind it
61+
// If its a method on the UserModel, bind it
6262
const method = this[prop as keyof this]
6363
if (typeof method === 'function')
6464
return method.bind(this)

storage/framework/core/actions/src/upgrade.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function checkForUncommittedChanges(options: UpgradeOptions) {
2121
catch (error: any) {
2222
if (error.status === 1) {
2323
// even though the ./stacks folder should not be edited, instead config values should be adjusted,
24-
// there is a chance that users may apply local core edits, as it's totally acceptable, as long as
24+
// there is a chance that users may apply local core edits, as its totally acceptable, as long as
2525
// the user knows what they are doing. There is also a change that simply the deps within stacks
2626
// folder have been updated and that could produce a diff.
2727
if (!options?.force) {

storage/framework/core/actions/src/upgrade/shell.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ $.cwd(p.dirname(zshrcPath))
1616
let data = await $`cat ${p.basename(zshrcPath)}`.text()
1717

1818
// Manipulate the data
19-
const pluginLineRegex = /^(?!#).*plugins=\(([^)]+)\)/m // ensure it's not a comment
19+
const pluginLineRegex = /^(?!#).*plugins=\(([^)]+)\)/m // ensure its not a comment
2020
const match = data.match(pluginLineRegex)
2121

2222
if (match) {
@@ -27,10 +27,10 @@ if (match) {
2727
process.exit(ExitCode.FatalError)
2828
}
2929

30-
// 2. Add buddy to the list of plugins if it's not already there
30+
// 2. Add buddy to the list of plugins if its not already there
3131
if (!plugins.includes('buddy')) {
3232
plugins.push('buddy')
33-
// Trim each plugin name and ensure it's formatted correctly
33+
// Trim each plugin name and ensure its formatted correctly
3434
const formattedPlugins = plugins.map(plugin => plugin.trim()).join('\n ')
3535
const newPluginLine = `plugins=(\n ${formattedPlugins}\n)`
3636
// Replace the old plugin line with the new one

0 commit comments

Comments
 (0)