spine-framework 0.1.25 → 0.1.27

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.
@@ -118,7 +118,8 @@ function copyFrameworkFiles(dryRun: boolean): void {
118
118
  continue
119
119
  }
120
120
 
121
- if (existsSync(dest)) {
121
+ // Always overwrite package.json (npm creates a minimal one during install)
122
+ if (existsSync(dest) && item.dest !== 'package.json') {
122
123
  console.log(` ⏭️ ${item.dest} already exists, skipping`)
123
124
  continue
124
125
  }
@@ -1 +1 @@
1
- {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../.framework/cli/commands/init.ts"],"names":[],"mappings":"AACA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AA2IxC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,OAAO,QAcpD"}
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../../.framework/cli/commands/init.ts"],"names":[],"mappings":"AACA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,WAAW,CAAA;AA4IxC,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,OAAO,QAcpD"}
@@ -3,12 +3,16 @@
3
3
  "version": "0.1.0",
4
4
  "type": "module",
5
5
  "scripts": {
6
- "assemble": "bash node_modules/spine-framework/.framework/scripts/assemble.sh",
6
+ "assemble": "bash node_modules/spine-framework/scripts/assemble.sh",
7
7
  "dev": "netlify dev",
8
8
  "build": "npm run assemble && netlify build",
9
9
  "preview": "netlify dev"
10
10
  },
11
11
  "dependencies": {
12
12
  "spine-framework": "^0.1.0"
13
+ },
14
+ "devDependencies": {
15
+ "vite": "^5.0.0",
16
+ "netlify-cli": "^17.0.0"
13
17
  }
14
18
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spine-framework",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "private": false,
5
5
  "description": "Spine — enterprise application framework built on Supabase + Netlify + React",
6
6
  "type": "module",