1.0.4 • Published 2 years ago

svelte-preprocess-uuid v1.0.4

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
2 years ago

svelte-preprocess-uuid

What is it?

It generates an ID at compile-time, which can be used for your DOM elements.

Input

<script>
    const uuid_1 = '$'; 
    let uuid_2 = '$';
    var uuid_3 = '$';
    console.log(uuid_1);
    console.log(uuid_2);
</script>

<label for={uuid_1}>Label for {uuid_1}</label>
<input id={uuid_1} type="text" />
<label for={uuid_2}>Label for {uuid_2}</label>
<input id={uuid_2} type="text" />

Output

<script>
    console.log('ac3dc94b-b448-456e-bf61-d886745a8bb4');
    console.log('3dc94bb4-4855-4ebf-a1d8-86745a8bb48e');
</script>

<label for="ac3dc94b-b448-456e-bf61-d886745a8bb4">Label for "ac3dc94b-b448-456e-bf61-d886745a8bb4"</label>
<input id="ac3dc94b-b448-456e-bf61-d886745a8bb4" type="text" />
<label for="3dc94bb4-4855-4ebf-a1d8-86745a8bb48e">Label for "3dc94bb4-4855-4ebf-a1d8-86745a8bb48e"</label>
<input id="3dc94bb4-4855-4ebf-a1d8-86745a8bb48e" type="text" />

Installation

npm i --save-dev svelte-preprocess-uuid

Next, add it to svelte preprocessor group in rollup.config.js:

import uuid from 'svelte-preprocess-uuid';

export default {
  plugins: [
    svelte({ preprocess: uuid })
  ]
}

// or if you are using another preprocessor, like svelte-preprocess
export default {
  plugins: [
    svelte({
      preprocess: [
        uuid,
        sveltePreprocess({}),
      ],
    })
  ]
}
1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago