@tridion-sites/extensions-cli 0.3.5 → 0.3.7
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/CHANGELOG.md +24 -0
- package/README.md +16 -0
- package/package.json +5 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @tridion-sites/extensions-cli
|
|
2
2
|
|
|
3
|
+
## 0.3.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 54439b54a7: removed links to internal systems, added readme files
|
|
8
|
+
- Updated dependencies [54439b54a7]
|
|
9
|
+
- Updated dependencies [3c84281381]
|
|
10
|
+
- @tridion-sites/open-api-client@1.0.6
|
|
11
|
+
- @tridion-sites/extensions@0.5.4
|
|
12
|
+
- @tridion-sites/models@0.1.4
|
|
13
|
+
|
|
14
|
+
## 0.3.6
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [6c90f9857b]
|
|
19
|
+
- Updated dependencies [5b9c431d84]
|
|
20
|
+
- Updated dependencies [be9284a536]
|
|
21
|
+
- Updated dependencies [3a72874a67]
|
|
22
|
+
- Updated dependencies [ee268eb424]
|
|
23
|
+
- Updated dependencies [a93bc99d21]
|
|
24
|
+
- @tridion-sites/extensions@0.5.3
|
|
25
|
+
- @tridion-sites/models@0.1.3
|
|
26
|
+
|
|
3
27
|
## 0.3.5
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Tridion Sites Extensions CLI
|
|
2
|
+
|
|
3
|
+
Command-line interface to create, develop, build and package extensions for Tridion Sites
|
|
4
|
+
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
## Creating a new addon
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
$ npx @tridion-sites/extensions-cli create
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## API Documentation
|
|
14
|
+
|
|
15
|
+
Documentation for all available services, their methods and interfaces can be found at
|
|
16
|
+
http://developers.rws.com/tridion-sites-extensions-api-docs/open-api-client.html
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tridion-sites/extensions-cli",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "CLI to develop, build and package extensions for Tridion
|
|
3
|
+
"version": "0.3.7",
|
|
4
|
+
"description": "CLI to create, develop, build and package extensions for Tridion Sites",
|
|
5
5
|
"author": "RWS",
|
|
6
6
|
"homepage": "https://www.rws.com",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -12,13 +12,6 @@
|
|
|
12
12
|
"bin": {
|
|
13
13
|
"sites-extensions": "./dist/cli.js"
|
|
14
14
|
},
|
|
15
|
-
"repository": {
|
|
16
|
-
"type": "git",
|
|
17
|
-
"url": "https://stash.sdl.com/scm/tdx/tridion-sites.git"
|
|
18
|
-
},
|
|
19
|
-
"bugs": {
|
|
20
|
-
"url": "https://jira.sdl.com/projects/DXUI/issues/"
|
|
21
|
-
},
|
|
22
15
|
"files": [
|
|
23
16
|
"dist/**/*"
|
|
24
17
|
],
|
|
@@ -31,9 +24,9 @@
|
|
|
31
24
|
"test": "sites-extensions"
|
|
32
25
|
},
|
|
33
26
|
"dependencies": {
|
|
34
|
-
"@tridion-sites/extensions": "0.5.
|
|
35
|
-
"@tridion-sites/models": "0.1.
|
|
36
|
-
"@tridion-sites/open-api-client": "1.0.
|
|
27
|
+
"@tridion-sites/extensions": "0.5.4",
|
|
28
|
+
"@tridion-sites/models": "0.1.4",
|
|
29
|
+
"@tridion-sites/open-api-client": "1.0.6",
|
|
37
30
|
"archiver": "5.3.1",
|
|
38
31
|
"chalk": "5.2.0",
|
|
39
32
|
"commander": "10.0.0",
|