Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a64548d
refactor: move framework-info into build packages
ericapisani Dec 19, 2022
ed168b6
refactor: address some of the code review comments
ericapisani Dec 20, 2022
0a8c4d9
refactor: remove more things
ericapisani Dec 20, 2022
a08a1d7
refactor: update vite config
ericapisani Dec 20, 2022
a662256
Merge branch 'main' into ep/add-framework-info
ericapisani Dec 20, 2022
6696e3b
chore: ignore test fixtures and output dir for linter
ericapisani Dec 21, 2022
dadacf8
Merge branch 'main' into ep/add-framework-info
ericapisani Dec 21, 2022
812d123
test: update test snapshots
ericapisani Dec 21, 2022
e728c67
Merge branch 'ep/add-framework-info' of github.com:netlify/build into…
ericapisani Dec 21, 2022
cb74d72
Revert "test: update test snapshots"
ericapisani Dec 22, 2022
1f32edd
Merge branch 'main' into ep/add-framework-info
ericapisani Dec 22, 2022
51141c4
Merge branch 'main' into ep/add-framework-info
ericapisani Jan 3, 2023
658d746
Revert "chore: ignore test fixtures and output dir for linter"
ericapisani Jan 3, 2023
4edeadf
Merge branch 'ep/add-framework-info' of github.com:netlify/build into…
ericapisani Jan 3, 2023
c2b10cb
Merge branch 'main' into ep/add-framework-info
ericapisani Jan 4, 2023
48640be
refactor: add framework-info to release-please config
ericapisani Jan 5, 2023
382f5f4
Merge branch 'ep/add-framework-info' of github.com:netlify/build into…
ericapisani Jan 5, 2023
d6ae147
Merge branch 'main' into ep/add-framework-info
ericapisani Jan 5, 2023
7baabb6
Merge branch 'main' into ep/add-framework-info
ericapisani Jan 9, 2023
982b093
docs: updates
ericapisani Jan 9, 2023
ead481e
Merge branch 'ep/add-framework-info' of github.com:netlify/build into…
ericapisani Jan 9, 2023
2948bfd
Apply suggestions from code review
ericapisani Jan 9, 2023
e157066
Merge branch 'ep/add-framework-info' of github.com:netlify/build into…
ericapisani Jan 9, 2023
21d5c61
Merge branch 'main' into ep/add-framework-info
ericapisani Jan 10, 2023
5f5dcd0
style: liiiiiint
ericapisani Jan 10, 2023
46fde62
Merge branch 'ep/add-framework-info' of github.com:netlify/build into…
ericapisani Jan 10, 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
2 changes: 2 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ const config = {
'packages/build/types/**',
// don't lint fixtures
'packages/*/tests/**/fixtures/**',
'packages/framework-info/test/fixtures/**',
'packages/framework-info/dist/**',
'packages/*/lib/**',
],
rules: {
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# don't format fixtures (sometimes faulty behaviour is desired)
packages/*/tests/**/fixtures/**
packages/framework-info/test/fixtures/**
# don't lint outputs
packages/*/lib
# don't lint changelog files as they get auto-generated
Expand Down
1 change: 1 addition & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"packages/build": "29.4.1",
"packages/cache-utils": "5.1.0",
"packages/config": "20.3.0",
"packages/framework-info": "9.5.3",
"packages/functions-utils": "5.1.1",
"packages/git-utils": "5.1.0",
"packages/headers-parser": "7.1.0",
Expand Down
Loading