storyly-placement 1.2.0 → 1.4.0
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.
- package/README.md +7 -32
- package/dist/storyly-placement.js +7519 -7337
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,52 +1,27 @@
|
|
|
1
1
|
# Storyly Web Placement
|
|
2
2
|
|
|
3
3
|
```Text Yarn
|
|
4
|
-
yarn add storyly-
|
|
4
|
+
yarn add storyly-placement
|
|
5
5
|
```
|
|
6
6
|
|
|
7
7
|
or
|
|
8
8
|
|
|
9
9
|
```Text npm
|
|
10
|
-
npm install storyly-
|
|
10
|
+
npm install storyly-placement
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
Import `storyly-
|
|
14
|
+
Import `storyly-placement` to where you register global components, like **main.js**.
|
|
15
15
|
|
|
16
|
-
That way, you would not need to import `storyly-
|
|
16
|
+
That way, you would not need to import `storyly-placement` under different pages several times.
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
```Text HTML
|
|
20
|
-
import 'storyly-
|
|
20
|
+
import 'storyly-placement';
|
|
21
21
|
```
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
For further information regarding the usage of `storyly-web-placement`, please check out [docs](https://docs.storyly.io/docs/initial-web-sdk-setup).
|
|
23
|
+
For further information regarding the usage of `storyly-placement`, please check out [docs](https://docs.storyly.io/v3.0/docs/placement-web-initial-setup).
|
|
25
24
|
|
|
26
25
|
# Change Log
|
|
27
26
|
|
|
28
|
-
check out [release notes](https://github.com/Netvent/storyly-
|
|
29
|
-
|
|
30
|
-
## Deployment (GitHub Actions)
|
|
31
|
-
|
|
32
|
-
Branches:
|
|
33
|
-
|
|
34
|
-
- `main`: Build only, deploy yok
|
|
35
|
-
- `qa`: `s3://$AWS_S3_BUCKET/qa` altına sync
|
|
36
|
-
- `prod`: `s3://$AWS_S3_BUCKET/releases/{version}`, `releases/{major.minor.*}`, `releases/{major.*}` altına sync
|
|
37
|
-
|
|
38
|
-
Secrets (Settings → Secrets and variables → Actions):
|
|
39
|
-
|
|
40
|
-
- `AWS_REGION`
|
|
41
|
-
- `AWS_ACCESS_KEY_ID` + `AWS_SECRET_ACCESS_KEY`
|
|
42
|
-
- `AWS_S3_BUCKET` (gerekli; bucket adı)
|
|
43
|
-
- `SOURCE_DIR` (örn: `dist`, opsiyonel)
|
|
44
|
-
|
|
45
|
-
Nasıl eklenir:
|
|
46
|
-
|
|
47
|
-
- Repo özelinde: GitHub → repo → Settings → Security → Secrets and variables → Actions → New repository secret
|
|
48
|
-
- Organizasyon genelinde: GitHub → org → Settings → Security → Secrets and variables → Actions → New organization secret (visibility ayarla)
|
|
49
|
-
|
|
50
|
-
Notlar:
|
|
51
|
-
|
|
52
|
-
- versiyon `package.json` içinden alınır.
|
|
27
|
+
check out [release notes](https://github.com/Netvent/storyly-sdk/blob/master/placement-web/RELEASENOTES.md).
|