Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: LostMyCode/redstone-js
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: LostMyCode/redstone-js
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: feat/migrate-to-vite
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 3 commits
  • 25 files changed
  • 1 contributor

Commits on Oct 26, 2025

  1. feat: migrate from Webpack to Vite

    This commit includes the following changes:
    
    - Removed Webpack configuration files (`.babelrc`, `webpack.config.js`).
    - Added Vite configuration file (`vite.config.js`).
    - Updated `package.json` with Vite-related scripts and dependencies, and removed Webpack dependencies.
    - Renamed JavaScript component files to JSX (`.js` to `.jsx`) to align with React best practices and Vite's default handling.
    - Updated `index.html` to include the Vite module script.
    - Updated `BufferReader.js` to remove CommonJS `module.exports` as it's no longer needed with ES Modules.
    LostMyCode committed Oct 26, 2025
    Configuration menu
    Copy the full SHA
    35d8067 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5936d07 View commit details
    Browse the repository at this point in the history
  3. refactor: Align static asset handling with Vite conventions

    Moves static assets from the `static` directory to the default `public` directory and updates paths in `index.html`. The custom `publicDir` option has been removed from the Vite configuration.
    LostMyCode committed Oct 26, 2025
    Configuration menu
    Copy the full SHA
    ac9a857 View commit details
    Browse the repository at this point in the history
Loading