@kamen/create-webapp 1.0.32 → 1.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,7 +11,11 @@ $ npm init @kamen/webapp
11
11
  ### Basic example
12
12
 
13
13
  ```js
14
- import {randomFromRange, randomFromList} from '@kamen/create-webapp';
14
+ import {
15
+ createRandomFromRange,
16
+ createRandomFromList,
17
+ createRandomColorFromSaturationLightnessAlpha
18
+ } from '@kamen/create-webapp';
15
19
 
16
20
  const characters = Array
17
21
  .from({length: 26}, (_, index) => [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kamen/create-webapp",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "description": "npm init @kamen/webapp",
5
5
  "homepage": "https://www.npmjs.com/package/@kamen/create-webapp",
6
6
  "license": "GPL-2.0-only",