marge from main#10
Merged
Merged
Conversation
Bumps [rollup](https://github.com/rollup/rollup) from 4.53.3 to 4.59.0. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](rollup/rollup@v4.53.3...v4.59.0) --- updated-dependencies: - dependency-name: rollup dependency-version: 4.59.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
Bump rollup from 4.53.3 to 4.59.0
Bumps [@babel/plugin-transform-modules-systemjs](https://github.com/babel/babel/tree/HEAD/packages/babel-plugin-transform-modules-systemjs) from 7.28.5 to 7.29.4. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.29.4/packages/babel-plugin-transform-modules-systemjs) --- updated-dependencies: - dependency-name: "@babel/plugin-transform-modules-systemjs" dependency-version: 7.29.4 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
…in-transform-modules-systemjs-7.29.4 Bump @babel/plugin-transform-modules-systemjs from 7.28.5 to 7.29.4
Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.28.5 to 7.29.7. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.29.7/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-version: 7.29.7 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
…-7.29.7 Bump @babel/core from 7.28.5 to 7.29.7
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
There was a problem hiding this comment.
Pull request overview
This PR updates the project’s build, test, and release setup by migrating from Rollup/Babel to an esbuild-based build script, updating package entrypoints/exports, and modernizing GitHub Actions workflows (tests + npm publishing).
Changes:
- Replace Rollup/Babel build pipeline with
build.js(esbuild) and addjest-esbuildtransform viajest.config.js. - Update package publishing metadata (version bump,
mainentry,exports.types, provenance) and refreshyarn.lock. - Replace the legacy CI workflow with a new
main.ymltest workflow and add apublish.ymlrelease-to-npm workflow.
Reviewed changes
Copilot reviewed 9 out of 12 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| yarn.lock | Dependency graph updates for Jest/esbuild toolchain changes. |
| rollup.config.js | Removed Rollup configuration (build system migration). |
| README.md | Updates workflow badge to point to new main.yml. |
| package.json | Version bump, exports/main adjustments, new scripts, swap devDependencies to esbuild + Jest tooling. |
| nodemon.json | Adds nodemon config for local development/watch behavior. |
| jest.config.js | Adds Jest config using jest-esbuild transform. |
| build.js | New esbuild-based build script (esm/cjs outputs + type copy + LLM bundle generation). |
| .gitignore | Ignores generated *.js.txt bundle artifact. |
| .github/workflows/publish.yml | Adds release-triggered npm publish workflow with provenance. |
| .github/workflows/node.js.yml | Removes legacy CI workflow. |
| .github/workflows/main.yml | Adds new CI workflow for tests/coverage + Codecov upload. |
| .babelrc | Removed Babel configuration (no longer used). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+66
to
+71
| try { | ||
| if (!withWatch) { | ||
| cleanBuild(); | ||
| copyTypeDefinitions(); | ||
| createLLMBundle(); | ||
| } |
Comment on lines
+30
to
+35
| - name: Build | ||
| run: yarn build | ||
| - name: Test | ||
| run: yarn test | ||
| - name: Coverage | ||
| run: yarn coverage |
Comment on lines
+36
to
+40
| - name: Upload coverage reports to Codecov | ||
| uses: codecov/codecov-action@v5 | ||
| with: | ||
| token: ${{ secrets.CODECOV_TOKEN }} | ||
| slug: nextcss/color-tools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.