You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying out Elder.js and on the default setup of a project there is a lot of noise, including build warnings (errors?) at build:
> npm run build
> [email protected] build
> node ./src/cleanPublic.js && npm run build:rollup && npm run build:html
Clearing out public folder.
> [email protected] build:rollup
> rollup -c
CSS file not found in /home/alan/src/elderjs-testing/public/_elderjs/assets
Elder.js using rollup in production mode.
src/layouts/*.svelte, src/routes/**/*.svelte, src/components/**/*.svelte → ___ELDER___/compiled...
Browserslist: caniuse-lite is outdated. Please run:
npx browserslist@latest --update-db
Why you should do it regularly:
https://github.com/browserslist/browserslist#browsers-data-updating
(!) Plugin replace: @rollup/plugin-replace: 'preventAssignment' currently defaults to false. It is recommended to set this option to `true`, as the next major version will default this option to `true`.
(!) Plugin rollup-plugin-elder: Layout has unused export property 'settings'. If it is for external reference only, please consider using `export const settings`
src/layouts/Layout.svelte
1: <script>
2: import style from '../../assets/style.css';
3: export let templateHtml, settings;
^
4: </script>
5:
(!) Import of non-existent export
src/layouts/Layout.svelte
1: <script>
2: import style from '../../assets/style.css';
^
3: export let templateHtml, settings;
4: </script>
created ___ELDER___/compiled in 1.1s
src/components/**/*.svelte → public/_elderjs/svelte...
created public/_elderjs/svelte in 1.8s
> [email protected] build:html
> node ./src/build.js
[░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░] 0% | ETA: 0s | 0/19 | Errors: 0 | P/sec: 0
Build Completed Successfully: Built 19 pages in 1.36 seconds
No SEO issues detected.
I installed using npx degit Elderjs/template elderjs-testing/ and I'm using:
node v18.10.0
npm 8.19.2
The text was updated successfully, but these errors were encountered:
I'm trying out Elder.js and on the default setup of a project there is a lot of noise, including build warnings (errors?) at build:
I installed using
npx degit Elderjs/template elderjs-testing/
and I'm using:node v18.10.0
npm 8.19.2
The text was updated successfully, but these errors were encountered: