spine-framework-portal 0.1.7 → 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 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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # spine-framework-portal
2
2
 
3
- **We're building Spine in the open.** The source is visible, the roadmap is public, and we share what we learn along the way. That said, Spine is not open source — commercial use requires a license. See [LICENSE.md](./LICENSE.md) for details.
3
+ **We're building Spine Framework in the open.** The source is visible, the roadmap is public, and we share what we learn along the way. That said, Spine Framework is not open source — commercial use requires a license. See [LICENSE.md](./LICENSE.md) for details.
4
4
 
5
5
  ---
6
6
 
@@ -9,7 +9,7 @@ Customer Portal is a self-service app for Spine Framework. It gives your custome
9
9
  ## Requirements
10
10
 
11
11
  - [Spine Framework](https://www.npmjs.com/package/spine-framework) `>=0.1.0`
12
- - A Spine project initialized with `npx spine-framework init`
12
+ - A Spine Framework project initialized with `npx spine-framework init`
13
13
 
14
14
  ## Installation
15
15
 
@@ -17,7 +17,7 @@ Customer Portal is a self-service app for Spine Framework. It gives your custome
17
17
  npx spine-framework install-app spine-framework-portal@latest
18
18
  ```
19
19
 
20
- This seeds the required roles, types, and configuration into your database and registers the app with Spine's navigation system.
20
+ This seeds the required roles, types, and configuration into your database and registers the app with Spine Framework's navigation system.
21
21
 
22
22
  ## Features
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spine-framework-portal",
3
- "version": "0.1.7",
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",