Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
c916695
POC Rollup
fregante Jun 19, 2024
ca94aaf
🤷‍♂️
fregante Jun 19, 2024
fc691df
Try just turning the parser into plain JS
fregante Jun 20, 2024
8caabab
IT BUILDS
fregante Jun 20, 2024
ee333ea
Drop webpack
fregante Jun 20, 2024
205c471
Lint
fregante Jun 20, 2024
1b30a4f
Merge branch 'main' of https://github.com/refined-github/refined-gith…
fregante Jun 20, 2024
45e20a9
Disable declaration output
fregante Jun 20, 2024
e34e75f
Disable bundling
fregante Jun 20, 2024
ae5f7ea
Merge branch 'main' of https://github.com/refined-github/refined-gith…
fregante Jul 22, 2024
9d3841d
Merge remote-tracking branch 'origin' into rollup
fregante Aug 18, 2024
d6f84fe
Update build
fregante Aug 18, 2024
34f4477
It loads
fregante Aug 18, 2024
8025f97
Recreate package-lock
fregante Aug 18, 2024
81781ce
Lint
fregante Aug 18, 2024
66a8b4b
Discard changes to build/readme-parser.d.ts
fregante Aug 18, 2024
dd3f2f7
Discard changes to build/readme-parser.ts
fregante Aug 18, 2024
91020ad
Restore manifest
fregante Aug 18, 2024
2114e87
CSS and clean directory
fregante Aug 18, 2024
bd55d3e
Restore RelativeCI?
fregante Aug 19, 2024
9195044
Limit spread of webpack-stats
fregante Aug 19, 2024
b59325c
It loads!
fregante Aug 19, 2024
c857df4
Windowzzzz
fregante Aug 19, 2024
8714702
Merge remote-tracking branch 'origin' into rollup
fregante Aug 19, 2024
938b95c
rollup-plugin-webpack-stats as dev
fregante Aug 19, 2024
c37cdfe
Apply nolyfill
fregante Aug 19, 2024
040017a
Merge remote-tracking branch 'origin' into rollup
fregante Aug 23, 2024
cf54022
Fix options
fregante Aug 23, 2024
152cd59
Disable `clear` on watch
fregante Aug 23, 2024
7d24512
Merge remote-tracking branch 'origin' into rollup
fregante Aug 23, 2024
a433639
Attempt to output good names under node_modules (failed)
fregante Aug 25, 2024
2484454
Revert "Attempt to output good names under node_modules (failed)"
fregante Aug 25, 2024
0f7825f
Output good names under node_modules
fregante Aug 25, 2024
c359a10
Replace old rollup plugin
fregante Aug 25, 2024
3e6e2b1
Merge remote-tracking branch 'origin' into rollup
fregante Aug 25, 2024
7156d7c
Merge remote-tracking branch 'origin' into rollup
fregante Aug 26, 2024
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
15 changes: 10 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,23 @@ jobs:
node-version-file: package.json
cache: npm
- run: npm ci
- run: npm run build:webpack -- --json webpack-stats.json
- name: Send webpack stats to RelativeCI
- run: npm run build:bundle
env:
RELATIVE_CI_STATS: true
- name: Send build stats to RelativeCI
if: matrix.os == 'ubuntu-latest'
uses: relative-ci/agent-action@v2
with:
webpackStatsFile: ./webpack-stats.json
token: ${{ github.token }}
webpackStatsFile: ./distribution/assets/webpack-stats.json
key: ${{ secrets.RELATIVE_CI_KEY }}
- uses: actions/upload-artifact@v4
if: matrix.os == 'ubuntu-latest'
with:
name: refined-github
path: distribution
path: |
distribution
!./distribution/assets/webpack-stats.json

Safari:
runs-on: macos-13
Expand All @@ -87,7 +92,7 @@ jobs:
node-version-file: package.json
cache: npm
- run: npm ci
- run: npm run build:webpack
- run: npm run build:bundle
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.0.1'
Expand Down
1 change: 0 additions & 1 deletion .xo-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
{
"nodeVersion": "20",
"files": [
"webpack.config.ts",
"build/*"
],
"rules": {
Expand Down
Loading