0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
Cybernetically enhanced web apps https://svelte.dev/
Go to file
Ramon Snir f84c00edb9
[fix] static svelte:element not replaced with tag in production mode (#7938)
* [fix] static svelte:element not replaced with tag in production mode

* [fix] static svelte:element not replaced with tag in production mode

* add optimization of static <svelte:element> and fix a bug

Co-authored-by: Yuichiro Yamashita <xydybaseball@gmail.com>
2023-01-01 16:41:00 +08:00
.github [ chore] disable puppeteer on Linux for Node8 and 10 (#8155) 2022-12-31 10:13:52 +09:00
elements [fix] add submitter property to submit event 2022-12-22 13:08:06 +01:00
scripts
site/content [docs] clear timeout on destroy 2022-12-22 17:47:52 +01:00
src [fix] static svelte:element not replaced with tag in production mode (#7938) 2023-01-01 16:41:00 +08:00
test [fix] static svelte:element not replaced with tag in production mode (#7938) 2023-01-01 16:41:00 +08:00
.editorconfig
.eslintignore
.eslintrc.js
.gitattributes
.gitignore [chore] add ESLint Caching (#8069) 2022-12-03 15:54:32 +09:00
.mocharc.js
.mocharc.unit.js
CHANGELOG.md update changelog 2022-12-22 13:13:31 +01:00
check_publish_env.js
CODE_OF_CONDUCT.md
CONTRIBUTING.md [docs] publish roadmap. add process section to contributor's guide and re-organize a bit (#7965) 2022-12-05 23:53:29 +09:00
generate-type-definitions.js
LICENSE.md
package-lock.json -> v3.55.0 2022-12-13 09:04:08 -05:00
package.json -> v3.55.0 2022-12-13 09:04:08 -05:00
README.md [docs] publish roadmap. add process section to contributor's guide and re-organize a bit (#7965) 2022-12-05 23:53:29 +09:00
register.js
rollup.config.js [fix] util polyfill to make compiler self-contained (#8014) 2022-11-10 09:10:40 -05:00
tsconfig.json

Cybernetically enhanced web apps: Svelte

npm version 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.

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
npm install

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

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

npm run build

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

npm run 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

npm run test

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

npm run 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