4.2.12 • Published 2 days ago

svelte v4.2.12

Weekly downloads
131,977
License
MIT
Repository
github
Last release
2 days ago

Svelte

The magical disappearing UI framework.


Tooling

This is the Svelte compiler, which is primarily intended for authors of tooling that integrates Svelte with different build systems. If you just want to write Svelte components and use them in your app, you probably want one of those tools:

Build Systems

CSS Preprocessors

Additional tools

Example usage

import * as svelte from 'svelte';

const { js, css, ast } = svelte.compile(source, {
	// the target module format – defaults to 'es' (ES2015 modules), can
	// also be 'amd', 'cjs', 'umd', 'iife' or 'eval'
	format: 'umd',

	// the filename of the source file, used in e.g. generating sourcemaps
	filename: 'MyComponent.html',

	// the name of the constructor. Required for 'iife' and 'umd' output,
	// but otherwise mostly useful for debugging. Defaults to 'SvelteComponent'
	name: 'MyComponent',

	// for 'amd' and 'umd' output, you can optionally specify an AMD module ID
	amd: {
		id: 'my-component'
	},

	// custom error/warning handlers. By default, errors will throw, and
	// warnings will be printed to the console. Where applicable, the
	// error/warning object will have `pos`, `loc` and `frame` properties
	onerror: err => {
		console.error( err.message );
	},

	onwarn: warning => {
		console.warn( warning.message );
	}
});

API

The Svelte compiler exposes the following API:

  • compile(source [, options]) => { js, css, ast } - Compile the component with the given options (see below). Returns an object containing the compiled JavaScript, a sourcemap, an AST and transformed CSS.
  • create(source [, options]) => function - Compile the component and return the component itself.
  • preprocess(source, options) => Promise — Preprocess a source file, e.g. to use PostCSS or CoffeeScript
  • VERSION - The version of this copy of the Svelte compiler as a string, 'x.x.x'.

Compiler options

The Svelte compiler optionally takes a second argument, an object of configuration options:

ValuesDescriptionDefault
generate'dom', 'ssr', falseWhether to generate JavaScript code intended for use on the client ('dom'), or for use in server-side rendering ('ssr'). If false, component will be parsed and validated but no code will be emitted'dom'
devtrue, falseWhether to enable run-time checks in the compiled component. These are helpful during development, but slow your component down.false
csstrue, falseWhether to include code to inject your component's styles into the DOM.true
hydratabletrue, falseWhether to support hydration on the compiled component.false
customElementtrue, false, { tag, props }Whether to compile this component to a custom element. If tag/props are passed, compiles to a custom element and overrides the values exported by the component.false
bindbooleanIf false, disallows bind: directivestrue
sharedtrue, false, stringWhether to import various helpers from a shared external library. When you have a project with multiple components, this reduces the overall size of your JavaScript bundle, at the expense of having immediately-usable component. You can pass a string of the module path to use, or true will import from 'svelte/shared.js'.false
legacytrue, falseEnsures compatibility with very old browsers, at the cost of some extra code.false
format'es', 'amd', 'cjs', 'umd', 'iife', 'eval'The format to output in the compiled component.'es' - ES6/ES2015 module, suitable for consumption by a bundler'amd' - AMD module'cjs' - CommonJS module'umd' - UMD module'iife' - IIFE-wrapped function defining a global variable, suitable for use directly in browser'eval' - standalone function, suitable for passing to eval()'es' for generate: 'dom''cjs' for generate: 'ssr'
namestringThe name of the constructor in the compiled component.'SvelteComponent'
filenamestringThe filename to use in sourcemaps and compiler error and warning messages.'SvelteComponent.html'
amd.idstringThe AMD module ID to use for the 'amd' and 'umd' output formats.undefined
globalsobject, functionWhen outputting to the 'umd', 'iife' or 'eval' formats, an object or function mapping the names of imported dependencies to the names of global variables.{}
preserveCommentsbooleanInclude comments in rendering. Currently, only applies to SSR renderingfalse
onerrorfunctionSpecify a callback for when Svelte encounters an error while compiling the component. Passed two arguments: the error object, and another function that is Svelte's default onerror handling.(exception is thrown)
onwarnfunctionSpecify a callback for when Svelte encounters a non-fatal warning while compiling the component. Passed two arguments: the warning object, and another function that is Svelte's default onwarn handling.(warning is logged to console)

Preprocessor options

svelte.preprocess returns a Promise that resolves to an object with a toString method (other properties will be added in future). It takes an options object with markup, style or script properties:

const processed = await svelte.preprocess(source, {
	markup: ({ content }) => {
		// `content` is the entire component string
		return { code: '...', map: {...} };
	},

	style: ({ content, attributes }) => {
		// `content` is what's inside the <style> element, if present
		// `attributes` is a map of attributes on the element
		if (attributes.type !== 'text/scss') return;
		return { code: '...', map: {...} };
	},

	script: ({ content, attributes }) => {
		// `content` is what's inside the <script> element, if present
		// `attributes` is a map of attributes on the element
		if (attributes.type !== 'text/coffeescript') return;
		return { code: '...', map: {...} };
	}
});

The style and script preprocessors will run after the markup preprocessor. Each preprocessor can return a) nothing (in which case no transformation takes place), b) a { code, map } object, or c) a Promise that resolves to a) or b). Note that sourcemaps are currently discarded, but will be used in future versions of Svelte.

Example/starter repos

Development

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

To install and work on Svelte locally:

git clone git@github.com:sveltejs/svelte.git
cd svelte
npm install
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 VSCode you may need to install a plugin in order to get syntax highlighting and code hints etc.

Linking to a Live Project

You can make changes locally to Svelte and test it against any Svelte project. You can also use a default template for development. Instruction on setup are found in that project repository.

From your project:

cd ~/path/to/your-svelte-project
npm install ~/path/to/svelte

And you should be good to test changes locally.

To undo this and link to the official latest Svelte release, just run:

npm install svelte@latest

Running Tests

npm run test

For running single tests, you can use pattern matching:

npm run test -- -g "includes AST in svelte.compile output"

Alternately, you can add solo: true to any given test/../_config.js file, but remember never to commit that setting.

License

MIT

@xl-soft/xl-ui@appist/dev@bobthered/svelte-tailwindcss-ui@rossrobino/components@feltcoop/felt-server@openbaseio/package-build-stats@cokakoala/skeleton@budibase/client@budibase/serverwackersv-ui@up2tom/file-column-matchergoulashify@studiobear/svelte-system-ui@studiobear/svelte-system-ui-componentsschockyhiveid-sdkprettier-svelteboardgame.ioju@packmate/uiapp-template-svelte-typescript-tailwind@iridium-project/compilersvelte-easyroute-rollupsvelte-easyroute-webpack@svazzle/config@pawcapsu/shared@dormcloud/shared@masp/zhb-slider@scicomp/demonpmpackage@vifjs/kitabycompany.jssvelte-snowpack-fullsvelte-petit-libssvelte-fancy-stores@freki/3dwebpack-with-babelsvelte-timer@service-exchange/client@service-exchange/frontend-core@service-exchange/service-exchange-clientappligatorsteps-core@getcircuit/web-mapscf-metadata@infinitebrahmanuniverse/nolb-sveltecreate-lkjhcanvaz-clicanvaz.funsvelte-form-statejem-miniappwitosvelte-esbuild-devserver@everything-registry/sub-chunk-2854@feltjs/feltoxeye-daisy@innit/prettier-config-sveltenate-react@kasif-apps/plugin-compilersvelte-app-12@subwallet_connect/core@subwallet_connect/transaction-previewkvelte-nodelibchartiumlit-svelte-storeslivebudhelloworldnydhoudini-plugin-svelte-global-storeshoudini-preprocesshoudini-sveltehoudini-devhindsighthereditashfc-plugin-sveltehue-conductorhyinsit-clienthyinsit-frontend-corehyinsit-serveri18next-svelte-scannerhyperlabkit-formskeep-track-tech-hierarchy-tracker-communitykigokontent-custom-element-appgoorbeargradio_notebookkudu-componentsleanweb-kitlc-svelte-lexicalimport-svelteimmer-loves-svelteinline-style-editorisekaiixcanuljem-componentsminiverseneutrino-preset-sveltenightwatch-plugin-sveltenight-visionnimiq-svelte-storesnimbus-ext
5.0.0-next.85

2 days ago

5.0.0-next.84

3 days ago

5.0.0-next.83

3 days ago

5.0.0-next.82

6 days ago

5.0.0-next.81

7 days ago

5.0.0-next.80

13 days ago

5.0.0-next.79

14 days ago

5.0.0-next.78

15 days ago

5.0.0-next.77

15 days ago

5.0.0-next.76

15 days ago

5.0.0-next.75

17 days ago

5.0.0-next.74

18 days ago

5.0.0-next.73

20 days ago

5.0.0-next.72

23 days ago

5.0.0-next.71

24 days ago

5.0.0-next.70

26 days ago

5.0.0-next.69

29 days ago

5.0.0-next.68

1 month ago

5.0.0-next.67

1 month ago

5.0.0-next.66

1 month ago

5.0.0-next.65

1 month ago

4.2.12

1 month ago

5.0.0-next.64

1 month ago

5.0.0-next.63

1 month ago

5.0.0-next.62

1 month ago

5.0.0-next.61

1 month ago

5.0.0-next.59

1 month ago

5.0.0-next.58

1 month ago

5.0.0-next.57

1 month ago

5.0.0-next.56

1 month ago

5.0.0-next.60

1 month ago

5.0.0-next.55

1 month ago

4.2.11

1 month ago

5.0.0-next.54

1 month ago

5.0.0-next.53

1 month ago

5.0.0-next.52

2 months ago

5.0.0-next.51

2 months ago

5.0.0-next.49

2 months ago

5.0.0-next.50

2 months ago

5.0.0-next.48

2 months ago

5.0.0-next.47

2 months ago

5.0.0-next.46

2 months ago

4.2.10

2 months ago

5.0.0-next.45

2 months ago

5.0.0-next.44

2 months ago

5.0.0-next.43

2 months ago

5.0.0-next.42

2 months ago

5.0.0-next.41

2 months ago

5.0.0-next.40

2 months ago

5.0.0-next.39

2 months ago

5.0.0-next.38

2 months ago

5.0.0-next.37

2 months ago

4.2.9

2 months ago

5.0.0-next.36

2 months ago

5.0.0-next.35

2 months ago

5.0.0-next.34

3 months ago

5.0.0-next.33

3 months ago

5.0.0-next.32

3 months ago

5.0.0-next.31

3 months ago

5.0.0-next.30

3 months ago

5.0.0-next.29

3 months ago

5.0.0-next.28

3 months ago

5.0.0-next.27

3 months ago

5.0.0-next.26

3 months ago

5.0.0-next.25

3 months ago

5.0.0-next.24

4 months ago

5.0.0-next.23

4 months ago

5.0.0-next.22

4 months ago

5.0.0-next.21

4 months ago

5.0.0-next.20

4 months ago

4.2.3

5 months ago

4.2.2

5 months ago

4.2.5

4 months ago

4.2.4

4 months ago

4.2.7

4 months ago

4.2.6

4 months ago

4.2.8

4 months ago

5.0.0-next.19

4 months ago

5.0.0-next.18

4 months ago

5.0.0-next.17

4 months ago

5.0.0-next.16

4 months ago

5.0.0-next.15

4 months ago

5.0.0-next.14

4 months ago

5.0.0-next.13

4 months ago

5.0.0-next.12

4 months ago

5.0.0-next.11

4 months ago

5.0.0-next.10

4 months ago

5.0.0-next.1

5 months ago

5.0.0-next.2

5 months ago

5.0.0-next.5

4 months ago

5.0.0-next.6

4 months ago

5.0.0-next.3

4 months ago

5.0.0-next.4

4 months ago

5.0.0-next.9

4 months ago

5.0.0-next.7

4 months ago

5.0.0-next.8

4 months ago

4.0.5

9 months ago

4.0.4

9 months ago

4.0.1

9 months ago

4.0.0

9 months ago

4.0.3

9 months ago

4.0.2

9 months ago

4.2.1

6 months ago

4.2.0

8 months ago

4.1.0

8 months ago

4.1.2

8 months ago

4.1.1

8 months ago

3.59.2

9 months ago

4.0.0-next.1

10 months ago

4.0.0-next.0

10 months ago

4.0.0-next.3

9 months ago

4.0.0-next.2

9 months ago

3.59.1

11 months ago

3.59.0

11 months ago

3.56.0

1 year ago

3.58.0

12 months ago

3.57.0

1 year ago

3.51.0

1 year ago

3.54.0

1 year ago

3.55.1

1 year ago

3.55.0

1 year ago

3.52.0

1 year ago

3.53.1

1 year ago

3.53.0

1 year ago

3.50.1

2 years ago

3.50.0

2 years ago

3.49.0

2 years ago

3.48.0

2 years ago

3.47.0

2 years ago

3.46.5

2 years ago

3.46.6

2 years ago

3.45.0

2 years ago

3.46.0

2 years ago

3.46.1

2 years ago

3.46.2

2 years ago

3.46.3

2 years ago

3.46.4

2 years ago

3.44.3

2 years ago

3.44.2

2 years ago

3.44.1

2 years ago

3.43.2

2 years ago

3.44.0

2 years ago

3.43.1

2 years ago

3.43.0

3 years ago

3.42.6

3 years ago

3.42.5

3 years ago

3.42.4

3 years ago

3.42.3

3 years ago

3.42.2

3 years ago

3.42.0

3 years ago

3.42.1

3 years ago

3.41.0

3 years ago

3.40.3

3 years ago

3.40.2

3 years ago

3.40.0

3 years ago

3.40.1

3 years ago

3.39.0

3 years ago

3.38.3

3 years ago

3.38.0

3 years ago

3.38.1

3 years ago

3.38.2

3 years ago

3.37.0

3 years ago

3.36.0

3 years ago

3.35.0

3 years ago

3.33.0

3 years ago

3.34.0

3 years ago

3.32.3

3 years ago

3.32.2

3 years ago

3.32.1

3 years ago

3.32.0

3 years ago

3.31.2

3 years ago

3.31.1

3 years ago

3.31.0

3 years ago

3.30.1

3 years ago

3.30.0

3 years ago

3.29.7

3 years ago

3.29.5

3 years ago

3.29.6

3 years ago

3.29.4

3 years ago

3.29.1

3 years ago

3.29.3

3 years ago

3.29.2

3 years ago

3.29.0

3 years ago

3.28.0

4 years ago

3.27.0

4 years ago

3.26.0

4 years ago

3.25.1

4 years ago

3.25.0

4 years ago

3.24.1

4 years ago

3.24.0

4 years ago

3.23.2

4 years ago

3.23.1

4 years ago

3.23.0

4 years ago

3.22.3

4 years ago

3.22.2

4 years ago

3.22.1

4 years ago

3.22.0

4 years ago

3.21.0

4 years ago

3.20.1

4 years ago

3.20.0

4 years ago

3.19.2

4 years ago

3.19.1

4 years ago

3.19.0

4 years ago

3.18.2

4 years ago

3.18.1

4 years ago

3.18.0

4 years ago

3.17.3

4 years ago

3.17.2

4 years ago

3.17.1

4 years ago

3.17.0

4 years ago

3.16.7

4 years ago

3.16.6

4 years ago

3.16.5

4 years ago

3.16.4

4 years ago

3.16.3

4 years ago

3.16.2

4 years ago

3.16.1

4 years ago

3.16.0

4 years ago

3.15.0

4 years ago

3.14.1

4 years ago

3.14.0

4 years ago

3.13.0

4 years ago

3.13.0-alpha.2

4 years ago

3.13.0-alpha.1

4 years ago

3.13.0-alpha.0

4 years ago

3.12.1

5 years ago

3.12.0

5 years ago

3.11.0

5 years ago

3.10.1

5 years ago

3.10.0

5 years ago

3.9.2

5 years ago

3.9.1

5 years ago

3.9.0

5 years ago

3.8.1

5 years ago

3.8.0

5 years ago

3.7.1

5 years ago

3.7.0

5 years ago

3.6.11

5 years ago

3.6.10

5 years ago

3.6.9

5 years ago

3.6.8

5 years ago

3.6.7

5 years ago

3.6.6

5 years ago

3.6.5

5 years ago

3.6.4

5 years ago

3.6.3

5 years ago

3.6.2

5 years ago

3.6.1

5 years ago

3.6.0

5 years ago

3.5.4

5 years ago

3.5.3

5 years ago

3.5.2

5 years ago

3.5.1

5 years ago

3.5.0

5 years ago

3.4.4

5 years ago

3.4.3

5 years ago

3.4.2

5 years ago

3.4.1

5 years ago

3.4.0

5 years ago

3.3.0

5 years ago

3.2.2

5 years ago

3.2.1

5 years ago

3.2.0

5 years ago

3.1.0

5 years ago

3.0.1

5 years ago

3.0.0

5 years ago

3.0.0-beta.28

5 years ago

3.0.0-beta.27

5 years ago

3.0.0-beta.26

5 years ago

3.0.0-beta.25

5 years ago

3.0.0-beta.24

5 years ago

3.0.0-beta.23

5 years ago

3.0.0-beta.22

5 years ago

3.0.0-beta.21

5 years ago

3.0.0-beta.20

5 years ago

3.0.0-beta.19

5 years ago

3.0.0-beta.18

5 years ago

3.0.0-beta.17

5 years ago

3.0.0-beta.16

5 years ago

3.0.0-beta.15

5 years ago

3.0.0-beta.14

5 years ago

3.0.0-beta.13

5 years ago

3.0.0-beta.12

5 years ago

3.0.0-beta.11

5 years ago

3.0.0-beta.10

5 years ago

3.0.0-beta.9

5 years ago

3.0.0-beta.8

5 years ago

3.0.0-beta.7

5 years ago

3.0.0-beta.6

5 years ago

3.0.0-beta.5

5 years ago

3.0.0-beta.4

5 years ago

2.16.1

5 years ago

3.0.0-beta.3

5 years ago

3.0.0-beta.2

5 years ago

3.0.0-beta.1

5 years ago

3.0.0-alpha27

5 years ago

3.0.0-alpha26

5 years ago

3.0.0-alpha25

5 years ago

3.0.0-alpha24

5 years ago

3.0.0-alpha23

5 years ago

3.0.0-alpha22

5 years ago

3.0.0-alpha21

5 years ago

3.0.0-alpha20

5 years ago

3.0.0-alpha19

5 years ago

3.0.0-alpha18

5 years ago

3.0.0-alpha17

5 years ago

3.0.0-alpha16

5 years ago

3.0.0-alpha15

5 years ago

3.0.0-alpha14

5 years ago

3.0.0-alpha13

5 years ago

3.0.0-alpha12

5 years ago

3.0.0-alpha11

5 years ago

3.0.0-alpha10

5 years ago

3.0.0-alpha9

5 years ago

3.0.0-alpha8

5 years ago

3.0.0-alpha7

5 years ago

3.0.0-alpha6

5 years ago

3.0.0-alpha5

5 years ago

3.0.0-alpha4

5 years ago

3.0.0-alpha3

5 years ago

2.16.0

5 years ago

3.0.0-alpha2

5 years ago

3.0.0-alpha1

5 years ago

2.15.3

5 years ago

2.15.2

5 years ago

2.15.1

5 years ago

2.15.0

5 years ago

2.14.3

5 years ago

2.14.2

5 years ago

2.14.1

5 years ago

2.14.0

5 years ago

2.13.5

6 years ago

2.13.4

6 years ago

2.13.3

6 years ago

2.13.2

6 years ago

2.13.1

6 years ago

2.13.0

6 years ago

2.12.1

6 years ago

2.12.0

6 years ago

2.11.0

6 years ago

2.10.1

6 years ago

2.10.0

6 years ago

2.9.11

6 years ago

2.9.10

6 years ago

2.9.9

6 years ago

2.9.8

6 years ago

2.9.7

6 years ago

2.9.6

6 years ago

2.9.5

6 years ago

2.9.4

6 years ago

2.9.3

6 years ago

2.9.2

6 years ago

2.9.1

6 years ago

2.9.0

6 years ago

2.8.1

6 years ago

2.8.0

6 years ago

2.7.2

6 years ago

2.7.1

6 years ago

2.7.0

6 years ago

2.6.6

6 years ago

2.6.5

6 years ago

2.6.4

6 years ago

2.6.3

6 years ago

2.6.2

6 years ago

2.6.1

6 years ago

2.6.0

6 years ago

2.5.1

6 years ago

2.5.0

6 years ago

2.4.4

6 years ago

2.4.3

6 years ago

2.4.2

6 years ago

2.4.1

6 years ago

2.4.0

6 years ago

2.3.0

6 years ago

2.2.0

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.64.1

6 years ago

1.64.0

6 years ago

1.63.1

6 years ago

1.63.0

6 years ago

1.62.0

6 years ago

1.61.0

6 years ago

1.60.3

6 years ago

1.60.2

6 years ago

1.60.1

6 years ago

1.60.0

6 years ago

1.59.0

6 years ago

1.58.5

6 years ago

1.58.4

6 years ago

1.58.3

6 years ago

1.58.2

6 years ago

1.58.1

6 years ago

1.58.0

6 years ago

1.57.4

6 years ago

1.57.3

6 years ago

1.57.2

6 years ago

1.57.1

6 years ago

1.57.0

6 years ago

1.56.4

6 years ago

1.56.3

6 years ago

1.56.2

6 years ago

1.56.1

6 years ago

1.56.0

6 years ago

1.55.1

6 years ago

1.55.0

6 years ago

1.54.2

6 years ago

1.54.1

6 years ago

1.54.0

6 years ago

1.53.0

6 years ago

1.52.0

6 years ago

1.51.1

6 years ago

1.51.0

6 years ago

1.50.1

6 years ago

1.50.0

6 years ago

1.49.3

6 years ago

1.49.2

6 years ago

1.49.1

6 years ago

1.49.0

6 years ago

1.48.0

6 years ago

1.47.2

6 years ago

1.47.1

6 years ago

1.47.0

6 years ago

1.46.1

6 years ago

1.46.0

6 years ago

1.45.0

6 years ago

1.44.2

6 years ago

1.44.1

6 years ago

1.44.0

6 years ago

1.43.1

6 years ago

1.43.0

6 years ago

1.42.1

6 years ago

1.42.0

6 years ago

1.41.4

6 years ago

1.41.3

6 years ago

1.41.2

6 years ago

1.41.1

6 years ago

1.41.0

6 years ago

1.40.2

6 years ago

1.40.1

7 years ago

1.40.0

7 years ago

1.39.4

7 years ago

1.39.3

7 years ago

1.39.2

7 years ago

1.39.1

7 years ago

1.39.0

7 years ago

1.38.0

7 years ago

1.37.0

7 years ago

1.36.0

7 years ago

1.35.0

7 years ago

1.34.0

7 years ago

1.33.0

7 years ago

1.32.0

7 years ago

1.31.0

7 years ago

1.30.0

7 years ago

1.29.3

7 years ago

1.29.2

7 years ago

1.29.1

7 years ago

1.29.0

7 years ago

1.28.1

7 years ago

1.28.0

7 years ago

1.27.0

7 years ago

1.26.2

7 years ago

1.26.1

7 years ago

1.26.0

7 years ago

1.25.1

7 years ago

1.25.0

7 years ago

1.24.0

7 years ago

1.23.4

7 years ago

1.23.3

7 years ago

1.23.2

7 years ago

1.23.1

7 years ago

1.23.0

7 years ago

1.22.5

7 years ago

1.22.4

7 years ago

1.22.3

7 years ago

1.22.2

7 years ago

1.22.1

7 years ago

1.22.0

7 years ago

1.21.0

7 years ago

1.20.2

7 years ago

1.20.1

7 years ago

1.20.0

7 years ago

1.19.1

7 years ago

1.19.0

7 years ago

1.18.2

7 years ago

1.18.1

7 years ago

1.18.0

7 years ago

1.17.2

7 years ago

1.17.1

7 years ago

1.17.0

7 years ago

1.16.0

7 years ago

1.15.1

7 years ago

1.15.0

7 years ago

1.14.1

7 years ago

1.14.0

7 years ago

1.13.7

7 years ago

1.13.6

7 years ago

1.13.5

7 years ago

1.13.4

7 years ago

1.13.3

7 years ago

1.13.2

7 years ago

1.13.1

7 years ago

1.13.0

7 years ago

1.12.1

7 years ago

1.12.0

7 years ago

1.11.4

7 years ago

1.11.3

7 years ago

1.11.2

7 years ago

1.11.1

7 years ago

1.11.0

7 years ago

1.10.3

7 years ago

1.10.2

7 years ago

1.10.1

7 years ago

1.10.0

7 years ago

1.9.1

7 years ago

1.9.0

7 years ago

1.8.1

7 years ago

1.8.0

7 years ago

1.7.1

7 years ago

1.7.0

7 years ago

1.6.11

7 years ago

1.6.10

7 years ago

1.6.9

7 years ago

1.6.8

7 years ago

1.6.7

7 years ago

1.6.6

7 years ago

1.6.5

7 years ago

1.6.4

7 years ago

1.6.3

7 years ago

1.6.2

7 years ago

1.6.1

7 years ago

1.6.0

7 years ago

1.5.0

7 years ago

1.4.0

7 years ago

1.3.1

7 years ago

1.3.0

7 years ago

1.2.5

7 years ago

1.2.4

7 years ago

1.2.3

7 years ago

1.2.2

7 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.3.0

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago