0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-29 08:32:05 +01:00
Cybernetically enhanced web apps https://svelte.dev/
Go to file
Puru Vijay aa5bb4a3db
feat: Better docs nav (#8605)
* DocsNav

* Push

* Nav title on each page

* Install jridgewell sourcemap codec. Why it breaking suddenly

* Use theme store

* Use $nav_title

* use $page.data.nav_title

* Disable global prerendering

* Fix Suppprters section

* use new method

* Initially hidden nav functionality

* Minor fixes

* Simplify into one single nav

* Accomodate to the bottom nav

* Minor fixes

* nit

* Add selected to other pages as well

* New way of passing to navbar

* Code cleanup

* Directly pass list instead of components

* 14 days

* Fix comment

* Discord icon

* Bump site-kit finally
2023-06-12 21:59:34 +05:30
.changeset Merge version-4 2023-06-10 16:02:51 +05:30
.github Merge version-4 2023-06-10 16:02:51 +05:30
.vscode Merge version-4 2023-06-10 16:02:51 +05:30
action Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
animate Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
documentation feat: Better docs nav (#8605) 2023-06-12 21:59:34 +05:30
easing Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
motion Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
packages Merge version-4 2023-06-10 16:02:51 +05:30
sites/svelte.dev feat: Better docs nav (#8605) 2023-06-12 21:59:34 +05:30
store Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
transition Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
.editorconfig chore: remove unnecessary indent_size from editorconfig (#5992) 2021-02-17 15:57:35 -05:00
.gitattributes Add a linguist configuration (#5878) 2021-01-18 11:46:51 -08:00
.gitignore Merge version-4 2023-06-10 16:02:51 +05:30
.prettierrc chore: add prettier (#8543) 2023-05-08 23:32:52 +02:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md (#7183) 2022-01-25 08:48:47 +00:00
CONTRIBUTING.md Merge remote-tracking branch 'origin/version-4' into sites 2023-05-28 01:19:27 +05:30
index.js Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
index.mjs Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
LICENSE.md Update license year (#8227) 2023-01-27 11:22:52 -05:00
package.json Merge version-4 2023-06-10 16:02:51 +05:30
pnpm-lock.yaml feat: Better docs nav (#8605) 2023-06-12 21:59:34 +05:30
pnpm-workspace.yaml Merge remote-tracking branch 'origin/version-4' into sites 2023-05-28 01:19:27 +05:30
README.md Merge remote-tracking branch 'origin/version-4' into sites 2023-05-28 01:19:27 +05:30
ssr.js Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30
ssr.mjs Merge remote-tracking branch 'origin/version-4' into sites 2023-05-25 16:30:20 +05:30

Cybernetically enhanced web apps: Svelte

license Chat

What is Svelte?

Svelte is a new way to build web applications. It's a compiler that takes your declarative components and converts them into efficient JavaScript that surgically updates the DOM.

Learn more at the Svelte website, or stop by the Discord chatroom.

Supporting Svelte

Svelte is an MIT-licensed open source project with its ongoing development made possible entirely by fantastic volunteers. If you'd like to support their efforts, please consider:

Funds donated via Open Collective will be used for compensating expenses related to Svelte's development such as hosting costs. If sufficient donations are received, funds may also be used to support Svelte's development more directly.

Roadmap

You may view our roadmap if you'd like to see what we're currently working on.

Contributing

Please see the Contributing Guide and svelte package for contributing to Svelte.

Development

Pull requests are encouraged and always welcome. Pick an issue and help us out!

To install and work on Svelte locally:

git clone https://github.com/sveltejs/svelte.git
cd svelte
pnpm install

Do not use Yarn to install the dependencies, as the specific package versions in pnpm-lock.json are used to build and test Svelte.

To build the compiler and all the other modules included in the package:

pnpm build

To watch for changes and continually rebuild the package (this is useful if you're using pnpm link to test out changes in a project locally):

pnpm dev

The compiler is written in TypeScript, but don't let that put you off — it's basically just JavaScript with type annotations. You'll pick it up in no time. If you're using an editor other than Visual Studio Code, you may need to install a plugin in order to get syntax highlighting and code hints, etc.

Running Tests

pnpm test

To filter tests, use -g (aka --grep). For example, to only run tests involving transitions:

pnpm test -- -g transition

svelte.dev

The source code for https://svelte.dev lives in the sites repository, with all the documentation in the site/content directory. The site is built with SvelteKit.

Is svelte.dev down?

Probably not, but it's possible. If you can't seem to access any .dev sites, check out this SuperUser question and answer.

License

MIT