Skip to content

Use Quild #4

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

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
13 changes: 11 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
}
webpack: (config, options) => ({
...config,
experiments: {
// Should only be required while we're using jsonld.js for contexts
// (because of how it uses http-client, which uses ky). Should go away
// when we switch to jsonld-context-parser.
topLevelAwait: true,
},
}),
};

module.exports = nextConfig
module.exports = nextConfig;
13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@
"test": "jest"
},
"dependencies": {
"@m-ld/m-ld": "^0.9.1",
"@m-ld/m-ld": "0.10.0",
"@types/lodash-es": "^4.17.11",
"@types/node": "18.14.1",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"classnames": "2.3.2",
"eslint": "8.34.0",
"eslint-config-next": "13.2.1",
"json5": "^2.2.3",
"jsonld": "8.1.1",
"lodash-es": "^4.17.21",
"memory-level": "^1.0.0",
"n3": "^1.16.3",
"next": "13.2.1",
Expand All @@ -26,7 +29,9 @@
"rxjs": "^7.8.0",
"todomvc-app-css": "2.4.2",
"todomvc-common": "1.0.5",
"typescript": "4.9.5"
"typescript": "4.9.5",
"quild": "link:../quild",
"zod": "^3.22.4"
},
"devDependencies": {
"@rdfjs/types": "^1.1.0",
Expand All @@ -35,7 +40,9 @@
"@types/n3": "^1.10.4",
"fast-check": "^3.7.0",
"jest": "^29.4.3",
"pretty-print-json": "^2.0.2",
"rxjs-for-await": "^1.0.0",
"ts-node": "^10.9.1"
"ts-node": "^10.9.1",
"type-fest": "^4.2.0"
}
}
Loading