spine-framework-portal 0.1.8 → 0.1.9
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 +13 -0
- package/package.json +7 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Changelog — spine-framework-portal
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## [0.1.8] — 2026-06-08
|
|
8
|
+
- Updated README to consistently use "Spine Framework" instead of "Spine"
|
|
9
|
+
- Added `publish:next` and `publish:promote` scripts
|
|
10
|
+
- Added `CHANGELOG.md`
|
|
11
|
+
|
|
12
|
+
## [0.1.7] — 2026-06-07
|
|
13
|
+
- Rewrote README to match spine-framework structure and branding
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spine-framework-portal",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "Customer Portal — self-service portal app for Spine Framework",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -9,6 +9,10 @@
|
|
|
9
9
|
"url": "https://github.com/spine-framework/portal",
|
|
10
10
|
"directory": "custom/apps/customer-portal"
|
|
11
11
|
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"publish:next": "npm publish --tag next --access public",
|
|
14
|
+
"publish:promote": "node -e \"const v=require('./package.json').version;require('child_process').execSync('npm dist-tag add spine-framework-portal@'+v+' latest',{stdio:'inherit'})\""
|
|
15
|
+
},
|
|
12
16
|
"peerDependencies": {
|
|
13
17
|
"spine-framework": ">=0.1.0"
|
|
14
18
|
},
|
|
@@ -20,7 +24,8 @@
|
|
|
20
24
|
"components/",
|
|
21
25
|
"functions/",
|
|
22
26
|
"README.md",
|
|
23
|
-
"LICENSE.md"
|
|
27
|
+
"LICENSE.md",
|
|
28
|
+
"CHANGELOG.md"
|
|
24
29
|
],
|
|
25
30
|
"spine": {
|
|
26
31
|
"type": "app",
|