Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump vite from 4.3.4 to 4.3.9 #11

Open
wants to merge 53 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
a3f8bce
Merge pull request #3 from will-stone/dependabot/npm_and_yarn/minimis…
will-stone Apr 1, 2022
0b8ca1d
Bump shell-quote from 1.7.2 to 1.7.3
dependabot[bot] Jun 23, 2022
3e8ae21
Merge pull request #6 from will-stone/dependabot/npm_and_yarn/shell-q…
will-stone Jun 23, 2022
176fb0d
Update peacock settings
will-stone Aug 7, 2022
48da44c
Upgrade peacock settings
will-stone Dec 26, 2022
fed2260
Bump http-cache-semantics from 4.1.0 to 4.1.1 (#9)
dependabot[bot] Feb 4, 2023
5207b73
Bump json5 from 1.0.1 to 1.0.2 (#8)
dependabot[bot] Feb 4, 2023
32cdd0a
Bump minimatch from 3.0.4 to 3.1.2 (#7)
dependabot[bot] Feb 4, 2023
a359898
Use my new linting rules
will-stone Feb 4, 2023
bf52570
Upgrade all deps
will-stone Feb 4, 2023
5cac75d
Use wikipedia rules link
will-stone Feb 4, 2023
eb78fb3
Update my website url
will-stone Feb 4, 2023
6486596
Add changesets to start a changelog
will-stone Feb 4, 2023
9e75dd6
Update changelog
will-stone Feb 4, 2023
93b9149
Add screenshot to package
will-stone Feb 4, 2023
626314d
Update changelog
will-stone Feb 4, 2023
7f16d27
CalculatePotentialScores -> calculatePotentialScore
will-stone Feb 4, 2023
7295806
Zod import
will-stone Feb 4, 2023
1ae718b
Fix comment typos
will-stone Feb 4, 2023
9159817
Slightly improve roll loop logic
will-stone Feb 4, 2023
d0bb910
Add more tests
will-stone Feb 5, 2023
401d948
Increase coverage
will-stone Feb 6, 2023
6421c50
Increase code coverage
will-stone Feb 6, 2023
49a3d3d
100% coverage
will-stone Feb 8, 2023
5fe19ab
Calculate, rather than store, potential scoreboard
will-stone Feb 8, 2023
97faec1
No more need to save rolling state
will-stone Feb 12, 2023
c41fd26
Update changelog
will-stone Feb 12, 2023
2ee9771
Squoosh screenshot
will-stone Feb 12, 2023
44b1266
Update changelog
will-stone Feb 12, 2023
9b3291d
To esm
will-stone Mar 8, 2023
784ffd2
Update changelog
will-stone Mar 12, 2023
510a87e
Update changelog
will-stone Mar 12, 2023
a191bbb
Update changelog
will-stone Mar 12, 2023
cd1d6c7
Unable to read local package.json
will-stone Mar 12, 2023
682d58c
Update changelog
will-stone Mar 12, 2023
2019976
Update changelog
will-stone Mar 12, 2023
520863f
Get app working without showing version (for now)
will-stone Mar 12, 2023
2548ebc
Update changelog
will-stone Mar 12, 2023
ea40ae3
Stop forgetting to build before publish
will-stone Mar 12, 2023
0d9f369
Just a release test
will-stone Mar 12, 2023
ee08235
Update changelog
will-stone Mar 12, 2023
4264143
Ensure tests do not depend on each other
will-stone Mar 18, 2023
7f4d7a2
Remove peacock
will-stone Mar 18, 2023
a146ba8
Put version number back in UI
will-stone Mar 18, 2023
26794b2
Update changelog
will-stone Mar 18, 2023
c5b6abd
Upgrade to TS 5
will-stone Mar 18, 2023
602042a
Update changelog
will-stone Mar 18, 2023
fb7c953
Upgrade deps
will-stone May 4, 2023
b0a44d6
Update author details to ".uk"
will-stone May 4, 2023
56322ae
Improve build speed; use tsup to build
will-stone May 4, 2023
6294c9a
Change from Jest to Vitest
will-stone May 6, 2023
4e5cea8
Update changelog
will-stone May 6, 2023
2fbdde1
deps-dev: Bump vite from 4.3.4 to 4.3.9
dependabot[bot] Jun 6, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changesets

Hello and welcome! This folder has been automatically generated by
`@changesets/cli`, a build tool that works with multi-package repos, or
single-package repos to help you version and publish your code. You can find the
full documentation for it
[in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this
project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
11 changes: 11 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"changelog": "@changesets/cli/changelog",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
}
27 changes: 27 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// This patch is a workaround for a longstanding ESLint feature request that
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
extends: [
'@will-stone/eslint-config-base',
'@will-stone/eslint-config-typescript',
'@will-stone/eslint-config-react',
'@will-stone/eslint-config-node',
'@will-stone/eslint-config-prettier',
],
rules: {
// Specific key order is used throughout this project, like the order of keyboard keys
'sort-keys': 'off',
},
overrides: [
{
files: ['**/*.{test,spec}.{js,ts,jsx,tsx}'],
extends: ['plugin:vitest/all'],
rules: {
'vitest/max-expects': 'off',
'vitest/no-hooks': 'off',
'vitest/require-top-level-describe': 'off',
},
},
],
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
/node_modules
/dist
/5dice.json
/5dice.json
/coverage
9 changes: 3 additions & 6 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"workbench.colorCustomizations": {
"titleBar.activeBackground": "#7e87f7",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#7e87f799",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#7E87F7"
"titleBar.activeForeground": "#7e87f7",
"titleBar.inactiveForeground": "#7e87f799"
}
}
83 changes: 83 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
# 5dice

## 1.13.2

### Patch Changes

- 2301dc5: Updated repo author details.

## 1.13.1

### Patch Changes

- beb1e57: Upgraded to TypeScript 5.

## 1.13.0

### Minor Changes

- b2ef92d: Return version number to UI.

## 1.12.9

### Patch Changes

- e5877f5: Release test.

## 1.12.8

### Patch Changes

- 7a8bf70: Just get it working without showing package version.

## 1.12.7

### Patch Changes

- a3a8c72: Re-release.

## 1.12.6

### Patch Changes

- 3017c37: Fix unable to read package.json.

## 1.12.5

### Patch Changes

- fb94de6: Re-release due to broken build.

## 1.12.4

### Patch Changes

- a105a19: Refactor to ESM.

## 1.12.3

### Patch Changes

- 5cbfe23: Reduce install size by squooshing screenshot.

## 1.12.2

### Patch Changes

- 319aad1: Rolling state is no longer saved to file. It was redundant as the
file would only be saved if `isRolling` was false, so the saved state would
always be false.
- fea1795: Potential score after each roll is now computed, rather than stored
in 5dice.json.

## 1.12.1

### Patch Changes

- 12efefa: Add screenshot to package readme.

## 1.12.0

### Minor Changes

- 09ab030: Start a changelog!
4 changes: 0 additions & 4 deletions jest.config.js

This file was deleted.

Loading