browser-extension-manager 1.3.36 → 1.3.38

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.
@@ -18,9 +18,13 @@
18
18
  sentry: {
19
19
  dsn: '',
20
20
  },
21
- google_analytics: {
22
- id: '',
23
- secret: '',
21
+ analytics: {
22
+ providers: {
23
+ google: {
24
+ id: '',
25
+ secret: '',
26
+ },
27
+ },
24
28
  },
25
29
  firebaseConfig: {
26
30
  apiKey: 'AIzaSyD1MvM-EQC_eVWqaTe5ImWALwhBr7iXgh8',
@@ -98,10 +98,10 @@ async function generateBuildJs(outputDir) {
98
98
  refreshNewVersion: { enabled: true, config: {} },
99
99
  serviceWorker: { enabled: false, config: {} },
100
100
 
101
- // Tracking
102
- tracking: {
103
- 'google-analytics': config.google_analytics?.id || '',
104
- 'google-analytics-secret': config.google_analytics?.secret || '',
101
+ // Analytics
102
+ analytics: {
103
+ google: config.analytics?.providers?.google?.id || '',
104
+ googleSecret: config.analytics?.providers?.google?.secret || '',
105
105
  },
106
106
 
107
107
  // Theme config
@@ -98,6 +98,12 @@ async function publish(complete) {
98
98
  return complete();
99
99
  }
100
100
 
101
+ // Check for local packages
102
+ const allDeps = JSON.stringify(project.dependencies || {}) + JSON.stringify(project.devDependencies || {});
103
+ if (allDeps.includes('file:')) {
104
+ throw new Error('Please remove local packages before publishing!');
105
+ }
106
+
101
107
  // Log
102
108
  logger.log('Starting publish...');
103
109
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-extension-manager",
3
- "version": "1.3.36",
3
+ "version": "1.3.38",
4
4
  "description": "Browser Extension Manager dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -38,9 +38,9 @@
38
38
  "replace": {}
39
39
  },
40
40
  "projectScripts": {
41
- "start": "npx bxm clean && npx bxm setup && npm run gulp --",
41
+ "start": "npx mgr clean && npx mgr setup && npm run gulp --",
42
42
  "gulp": "gulp --cwd ./ --gulpfile ./node_modules/browser-extension-manager/dist/gulp/main.js",
43
- "build": "npx bxm clean && npx bxm setup && BXM_BUILD_MODE=true npm run gulp -- build",
43
+ "build": "npx mgr clean && npx mgr setup && BXM_BUILD_MODE=true npm run gulp -- build",
44
44
  "publish": "BXM_IS_PUBLISH=true npm run gulp -- publish",
45
45
  "release": "npm run build && npm run publish"
46
46
  },
@@ -68,15 +68,15 @@
68
68
  },
69
69
  "homepage": "https://template.itwcreativeworks.com",
70
70
  "dependencies": {
71
- "@anthropic-ai/claude-agent-sdk": "^0.2.44",
71
+ "@anthropic-ai/claude-agent-sdk": "^0.2.74",
72
72
  "@babel/core": "^7.29.0",
73
73
  "@babel/preset-env": "^7.29.0",
74
74
  "@popperjs/core": "^2.11.8",
75
- "babel-loader": "^10.0.0",
75
+ "babel-loader": "^10.1.1",
76
76
  "chalk": "^5.6.2",
77
77
  "dotenv": "^17.3.1",
78
78
  "fs-jetpack": "^5.1.0",
79
- "glob": "^13.0.3",
79
+ "glob": "^13.0.6",
80
80
  "gulp-clean-css": "^4.3.0",
81
81
  "gulp-filter": "^9.0.1",
82
82
  "gulp-rename": "^2.1.0",
@@ -85,13 +85,13 @@
85
85
  "itwcw-package-analytics": "^1.0.8",
86
86
  "json5": "^2.2.3",
87
87
  "lodash": "^4.17.23",
88
- "minimatch": "^10.2.0",
88
+ "minimatch": "^10.2.4",
89
89
  "node-powertools": "^2.3.2",
90
90
  "npm-api": "^1.0.1",
91
- "sass": "^1.97.3",
91
+ "sass": "^1.98.0",
92
92
  "through2": "^4.0.2",
93
- "web-manager": "^4.1.9",
94
- "webpack": "^5.105.2",
93
+ "web-manager": "^4.1.23",
94
+ "webpack": "^5.105.4",
95
95
  "wonderful-fetch": "^1.3.4",
96
96
  "wonderful-version": "^1.3.2",
97
97
  "ws": "^8.19.0",