@codyswann/lisa 1.55.1 → 1.55.2
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/package.json +3 -6
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/scripts/strip-workspaces-for-pack.sh +20 -0
package/package.json
CHANGED
|
@@ -27,6 +27,8 @@
|
|
|
27
27
|
"setup:deploy-key": "bash scripts/setup-deploy-key.sh",
|
|
28
28
|
"lisa:update:local": "bash scripts/lisa-update-local.sh",
|
|
29
29
|
"lisa:commit-and-pr:local": "bash scripts/lisa-commit-and-pr-local.sh",
|
|
30
|
+
"prepack": "bash scripts/strip-workspaces-for-pack.sh",
|
|
31
|
+
"postpack": "[ -f package.json.bak ] && mv package.json.bak package.json || true",
|
|
30
32
|
"prepublishOnly": "$npm_execpath run build",
|
|
31
33
|
"postinstall": "bash ./scripts/install-claude-plugins.sh || true; [ -d dist/configs ] || tsc || true"
|
|
32
34
|
},
|
|
@@ -37,11 +39,6 @@
|
|
|
37
39
|
"bun": "1.3.8",
|
|
38
40
|
"node": "22.21.1"
|
|
39
41
|
},
|
|
40
|
-
"workspaces": [
|
|
41
|
-
"eslint-plugin-code-organization",
|
|
42
|
-
"eslint-plugin-component-structure",
|
|
43
|
-
"eslint-plugin-ui-standards"
|
|
44
|
-
],
|
|
45
42
|
"files": [
|
|
46
43
|
"dist",
|
|
47
44
|
"all",
|
|
@@ -72,7 +69,7 @@
|
|
|
72
69
|
"axios": ">=1.13.5"
|
|
73
70
|
},
|
|
74
71
|
"name": "@codyswann/lisa",
|
|
75
|
-
"version": "1.55.
|
|
72
|
+
"version": "1.55.2",
|
|
76
73
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
77
74
|
"main": "dist/index.js",
|
|
78
75
|
"exports": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-cdk",
|
|
3
|
-
"version": "1.55.
|
|
3
|
+
"version": "1.55.2",
|
|
4
4
|
"description": "Claude Code governance plugin for AWS CDK projects — includes all universal skills, agents, hooks, and rules from Lisa plus TypeScript tooling",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-expo",
|
|
3
|
-
"version": "1.55.
|
|
3
|
+
"version": "1.55.2",
|
|
4
4
|
"description": "Claude Code governance plugin for Expo/React Native projects — includes all universal skills, agents, hooks, and rules from Lisa plus Expo-specific tooling",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-nestjs",
|
|
3
|
-
"version": "1.55.
|
|
3
|
+
"version": "1.55.2",
|
|
4
4
|
"description": "Claude Code governance plugin for NestJS/GraphQL projects — includes all universal skills, agents, hooks, and rules from Lisa plus NestJS-specific tooling (GraphQL, TypeORM, security scanning)",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-rails",
|
|
3
|
-
"version": "1.55.
|
|
3
|
+
"version": "1.55.2",
|
|
4
4
|
"description": "Claude Code governance plugin for Ruby on Rails projects — includes all universal skills, agents, hooks, and rules from Lisa plus Rails-specific tooling (ActionController, ActionView, ActiveRecord)",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lisa-typescript",
|
|
3
|
-
"version": "1.55.
|
|
3
|
+
"version": "1.55.2",
|
|
4
4
|
"description": "Claude Code governance plugin for TypeScript projects — includes all universal skills, agents, hooks, and rules from Lisa plus TypeScript-specific tooling",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Cody Swann"
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
#!/usr/bin/env bash
|
|
2
|
+
# Strips the `workspaces` field from package.json before npm creates a tarball.
|
|
3
|
+
#
|
|
4
|
+
# The workspaces field is only meaningful for Lisa's local monorepo development.
|
|
5
|
+
# When published to npm, it causes bun to erroneously try resolving workspace
|
|
6
|
+
# directory names (e.g. "eslint-plugin-component-structure") as npm packages,
|
|
7
|
+
# producing FileNotFound errors in downstream projects during `bun update`.
|
|
8
|
+
#
|
|
9
|
+
# Called via the `prepack` lifecycle hook; the `postpack` hook restores the
|
|
10
|
+
# original package.json from the backup created here.
|
|
11
|
+
set -euo pipefail
|
|
12
|
+
|
|
13
|
+
cp package.json package.json.bak
|
|
14
|
+
node -e "
|
|
15
|
+
const fs = require('fs');
|
|
16
|
+
const pkg = JSON.parse(fs.readFileSync('package.json', 'utf8'));
|
|
17
|
+
delete pkg.workspaces;
|
|
18
|
+
fs.writeFileSync('package.json', JSON.stringify(pkg, null, 2) + '\n');
|
|
19
|
+
"
|
|
20
|
+
echo "prepack: stripped workspaces from package.json"
|