playjs-core 0.6.4 → 0.6.6

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 (4) hide show
  1. package/README.md +15 -3
  2. package/dist/index.es.js +105239 -99422
  3. package/dist/index.umd.js +163 -136
  4. package/package.json +11 -13
package/README.md CHANGED
@@ -2,13 +2,25 @@ Add a JavaScript Playground on your project.
2
2
 
3
3
  ![PlayJS screenshot with a simple Hello World function](https://github.com/salteadorneo/PlayJS/assets/4882454/fa04d8cd-2f1a-4819-9d5e-1dcf23faa985)
4
4
 
5
- ```javascript
6
- import { PlayJS } from 'playjs-core';
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install react react-dom playjs-core
9
+ ```
10
+
11
+ ```bash
12
+ yarn add react react-dom playjs-core
13
+ ```
14
+
15
+ ```bash
16
+ pnpm install react react-dom playjs-core
7
17
  ```
8
18
 
9
19
  ## Basic usage
10
20
 
11
- ```html
21
+ ```tsx
22
+ import { PlayJS } from 'playjs-core';
23
+
12
24
  <PlayJS />
13
25
  ```
14
26