Fix issue where and keyword is wrongly used to determine quantity + new demo website #172
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes significant changes to the project structure and configuration, primarily focusing on replacing the
demo
directory withdemo2
and updating related configurations accordingly. Additionally, it involves the removal of various configuration files and dependencies.Fixes #171
Project Structure and Configuration Updates:
.github/workflows/demo.yml
: Updated paths and commands to reflect the renaming of thedemo
directory todemo2
, including switching fromnpm
toyarn
for dependency management and build processes. [1] [2]Removal of old demo files
.eslintignore
,.eslintrc.cjs
,.npmrc
,.prettierignore
,.prettierrc
,README.md
,package.json
,app.html
,+layout.svelte
,+page.js
,+page.svelte
,styles.css
,robots.txt
,svelte.config.js
, andvite.config.js
in thedemo
directory. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15]Updates to
.gitignore
and.npmrc
:demo2/.gitignore
: Renamed fromdemo/.gitignore
and updated to include additional output directories and environment files.demo2/.npmrc
: Addedengine-strict=true
to enforce strict engine compatibility.Updates to
.prettierignore
:demo2/.prettierignore
: Added entries to ignore lock files for various package managers.