@spinnaker/pluginsdk 2026.0.3 → 2026.1.1

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "https://github.com/spinnaker/spinnaker.git"
6
6
  },
7
7
  "description": "Provides blessed opinions (rollup, code format, lint) and packages (react, etc) to plugin developers",
8
- "version": "2026.0.3",
8
+ "version": "2026.1.1",
9
9
  "module": "dist/index.js",
10
10
  "typings": "dist/index.d.ts",
11
11
  "license": "Apache-2.0",
@@ -52,5 +52,5 @@
52
52
  "scripts",
53
53
  "pluginconfig"
54
54
  ],
55
- "gitHead": "d7237d64b8696dfcdf1e1eff76b6e59720899cbd"
55
+ "gitHead": "f842aaebe413ea1a14ccec06dd6824e07dc7426b"
56
56
  }
@@ -4,19 +4,19 @@
4
4
  "type": "git",
5
5
  "url": "https://github.com/spinnaker/spinnaker.git"
6
6
  },
7
- "version": "2026.0.3",
7
+ "version": "2026.1.1",
8
8
  "private": true,
9
9
  "module": "build/dist/index.js",
10
10
  "scripts": {
11
11
  "clean": "npx shx rm -rf build",
12
12
  "develop": "npm run clean && run-p watch proxy",
13
- "build": "npm run clean && NODE_ENV=production rollup -c",
13
+ "build": "npm run clean && NODE_ENV=production rollup -c --bundleConfigAsCjs",
14
14
  "lint": "eslint --ext js,jsx,ts,tsx src",
15
15
  "postinstall": "check-plugin && check-peer-dependencies || true",
16
16
  "prepare": "husky-install",
17
17
  "prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,html,css,less,json}'",
18
18
  "proxy": "dev-proxy",
19
- "watch": "rollup -c -w --no-watch.clearScreen"
19
+ "watch": "rollup -c -w --no-watch.clearScreen --bundleConfigAsCjs"
20
20
  },
21
21
  "dependencies": {
22
22
  "@spinnaker/pluginsdk": "latest"
@@ -1,5 +1,3 @@
1
- /* eslint-disable no-console */
2
-
3
1
  const { execSync } = require('child_process');
4
2
  const { assertJsonFile } = require('../asserters/assertJsonFile');
5
3
  const { readJson } = require('@spinnaker/scripts/read-write-json');
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env node
2
- /* eslint-disable no-console */
3
2
 
4
3
  const path = require('path');
5
4
  const fs = require('fs');