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

Remove parcel refs #117

Merged
merged 4 commits into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions .github/_workflow-samples/deploy-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
key: ${{ runner.os }}-build-${{ hashFiles('**/package.json') }}

- name: Cache dist
uses: actions/cache@v4
id: cache-dist
with:
path: dist
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
key: ${{ runner.os }}-build-${{ github.sha }}

- name: Install
run: pnpm install
Expand All @@ -65,7 +65,7 @@ jobs:
id: cache-dist
with:
path: dist
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
key: ${{ runner.os }}-build-${{ github.sha }}

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/_workflow-samples/deploy-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ jobs:
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
key: ${{ runner.os }}-build-${{ hashFiles('**/package.json') }}

- name: Cache dist
uses: actions/cache@v4
id: cache-dist
with:
path: dist
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
key: ${{ runner.os }}-build-${{ github.sha }}

- name: Install
run: pnpm install
Expand All @@ -65,7 +65,7 @@ jobs:
id: cache-dist
with:
path: dist
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ github.sha }}
key: ${{ runner.os }}-build-${{ github.sha }}

# Action: https://github.com/marketplace/actions/s3-deploy
- name: Deploy to S3
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
key: ${{ runner.os }}-build-${{ hashFiles('**/package.json') }}

- name: Install
run: pnpm install
Expand All @@ -71,7 +71,7 @@ jobs:
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
key: ${{ runner.os }}-build-${{ hashFiles('**/package.json') }}

- name: Install
run: pnpm install
Expand Down Expand Up @@ -101,10 +101,10 @@ jobs:
id: cache-node-modules
with:
path: node_modules
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package.json') }}
key: ${{ runner.os }}-build-${{ hashFiles('**/package.json') }}

- name: Install
run: pnpm install

- name: Test
run: pnpm run test
run: pnpm test
5 changes: 0 additions & 5 deletions .parcelrc

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# project-seed v8

A basic starting point for web projects that uses parcel as a Build System.
A basic starting point for web projects that uses vite as a Build System.

Uses typescript and jest for testing

Expand Down
2 changes: 1 addition & 1 deletion _README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pnpm install
## Usage

### Config files
Configuration is done using [dot.env](https://parceljs.org/features/node-emulation/#.env-files) files.
Configuration is done using [dot.env](https://vite.dev/guide/env-and-mode#env-files) files.

These files are used to simplify the configuration of the app and should not contain sensitive information.

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"portscanner": "^2.2.0",
"prettier": "^3.4.2",
Expand Down
3 changes: 3 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.