Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: decoupled sourcing PoC #561

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

Draft
ascorbic wants to merge 18 commits into main
base: main
Choose a base branch
Loading
from mk/merlin
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
9568194
feat: experimental decoupled sourcing support
ascorbic Feb 10, 2023
11f2081
chore: lint
ascorbic Feb 10, 2023
02ef5bb
Merge branch 'main' into mk/merlin
ascorbic Feb 10, 2023
68d3ab1
chore: use correct require path
ascorbic Feb 10, 2023
f4ccf94
chore: changes from review
ascorbic Feb 10, 2023
35501bd
bump vers
DanielSLew Feb 10, 2023
42c721f
update lockfile
DanielSLew Feb 10, 2023
edbbc01
2.0.1-merlin.0
sarahetter Feb 10, 2023
dd05a1b
fix: fix version
sarahetter Feb 10, 2023
d80a47a
fix: fix version again
sarahetter Feb 10, 2023
fa5114e
bump merlin vers
DanielSLew Feb 10, 2023
a958e50
bump merlin vers
DanielSLew Feb 10, 2023
51e1c4d
fix conflicts
DanielSLew Feb 10, 2023
f804d39
chore: update dep
ascorbic Feb 11, 2023
a86f98c
chore: lint
ascorbic Feb 11, 2023
a63af94
chore: log things
ascorbic Feb 21, 2023
598890a
chore: always build site
ascorbic Feb 21, 2023
71db642
chore: rm log
ascorbic Feb 21, 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 .eslintignore
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugin/lib
fixtures/
demo

plugin/src/templates/inject

*~
*.swp
npm-debug.log
Expand Down
17 changes: 14 additions & 3 deletions .eslintrc.js
View file Open in desktop
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ module.exports = {
'func-style': 'off',
// This is compiled, so we can use modern syntax
'node/no-unsupported-features/es-syntax': 'off',
'node/prefer-global/process': 'off',
'node/global-require': 'off',
// This is a duplicate of `import/no-duplicates` but can handle "import type"
'no-duplicate-imports': 'off',
'node/no-unpublished-import': 'off',
'max-depth': ['error', 4],
complexity: 'off',
'n/no-missing-import': 'off',
},
env: {
Expand All @@ -21,15 +25,22 @@ module.exports = {
overrides: [
...overrides,
{
// Tests use lots of nested callbacks
files: ['*-test.js', '*.spec.js', '**/e2e-tests/*.js'],
files: [
'*-test.js',
'*.spec.js',
'**/e2e-tests/*.js',
'*-test.ts',
'*.spec.ts',
'**/e2e-tests/*.ts',
],
rules: {
'max-nested-callbacks': 'off',
'ava/no-import-test-files': 'off',
},
},
{
// Templates import files from the site itself and needs lots of dynamic requires
files: ['plugin/src/templates/**/*'],
files: ['plugin/src/templates/**/*', 'plugin/test/unit/templates/**/*'],
rules: {
'n/no-unpublished-import': 'off',
'@typescript-eslint/no-var-requires': 'off',
Expand Down
Loading

AltStyle によって変換されたページ (->オリジナル) /