@biklitime/biklimaster 1.1.7 → 1.1.8

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/README.md CHANGED
@@ -1,7 +1,7 @@
1
- # @biklitool/biklimaster
1
+ # @biklitime/biklimaster
2
2
 
3
- Internal one-command Windows installer for the Bikli CLI and Bikli Wrapper. This is a private,
4
- scoped package intended for your own managed machines — not public distribution.
3
+ Internal one-command Windows installer for the Bikli CLI and Bikli Wrapper. This is a public,
4
+ scoped package intended for your own managed machines.
5
5
 
6
6
  Provide the account password and Bikli key at install time via environment variables (they are not
7
7
  shipped in the package):
@@ -9,7 +9,7 @@ shipped in the package):
9
9
  ```text
10
10
  set BIKLIMASTER_USER_PASSWORD=your-password
11
11
  set BIKLIMASTER_BIKLI_KEY=your-bikli-key
12
- npm install -g @biklitool/biklimaster
12
+ npm install -g @biklitime/biklimaster
13
13
  ```
14
14
 
15
15
  The npm postinstall hook requests Windows administrator approval once, then:
@@ -329,7 +329,8 @@ function selfTest() {
329
329
  : JSON.parse(fs.readFileSync(path.join(packageRoot, 'package.json'), 'utf8'));
330
330
  const ini = fs.readFileSync(bundledIniPath, 'utf8');
331
331
  const checks = {
332
- packageName: packageJson.name === 'bikliwrapper' || packageJson.name === 'biklimaster',
332
+ packageName: packageJson.name === 'bikliwrapper' || packageJson.name === 'biklimaster' ||
333
+ packageJson.name === '@biklitime/biklimaster',
333
334
  executableMode: runningAsSea ? path.extname(process.execPath).toLowerCase() === '.exe' : true,
334
335
  installerPresent: fs.statSync(installerPath).size > 100000,
335
336
  iniPresent: ini.length > 100000,
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@biklitime/biklimaster",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Internal Windows installer for Bikli CLI and Bikli Wrapper",
5
5
  "license": "BSD-3-Clause",
6
6
  "publishConfig": {
7
- "access": "restricted"
7
+ "access": "public"
8
8
  },
9
9
  "os": [
10
10
  "win32"