kirbyup 3.0.1 → 3.0.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/LICENSE CHANGED
@@ -1,7 +1,7 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021-2023 Johann Schopplich <https://github.com/johannschopplich>
4
- Copyright (c) 2022-2023 Jonas Kuske <https://github.com/jonaskuske>
3
+ Copyright (c) 2021-PRESENT Johann Schopplich <https://github.com/johannschopplich>
4
+ Copyright (c) 2022-PRESENT Jonas Kuske <https://github.com/jonaskuske>
5
5
 
6
6
  Permission is hereby granted, free of charge, to any person obtaining a copy
7
7
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,5 +1,6 @@
1
1
  # kirbyup
2
2
 
3
+ > [!NOTE]
3
4
  > Take a look into Kirby's [pluginkit](https://github.com/getkirby/pluginkit/tree/4-panel) repository for an example setup.
4
5
 
5
6
  The fastest and leanest way to bundle your Kirby Panel plugins. No configuration necessary.
@@ -41,6 +42,7 @@ If you want to use kirbyup right away, there is no need to install it. Simply ca
41
42
  }
42
43
  ```
43
44
 
45
+ > [!NOTE]
44
46
  > If `npx` doesn't use the latest kirbyup version, although it is available, run `npx -y kirbyup@latest` instead or delete the `~/.npm/_npx` cache folder.
45
47
 
46
48
  While kirbyup will stay backwards compatible, exact build reproducibility may be of importance to you. If so, I recommend targeting a specific package version, rather than using `npx`. Install kirbyup with a package manager of your choice locally to your project:
@@ -72,7 +74,8 @@ Global installation is supported as well, but not recommended.
72
74
 
73
75
  Start a development server for the Panel plugin:
74
76
 
75
- > ℹ️ This feature requires Kirby v3.7.4+.
77
+ > [!NOTE]
78
+ > This feature requires Kirby v3.7.4+.
76
79
 
77
80
  ```bash
78
81
  kirbyup serve src/index.js
@@ -122,7 +125,8 @@ You can use the alias:
122
125
  import someUtility from '~/utils'
123
126
  ```
124
127
 
125
- > ℹ️ You can use `@/` as path alias as well.
128
+ > [!NOTE]
129
+ > You can use `@/` as path alias as well.
126
130
 
127
131
  ### Auto-Import Blocks and Fields
128
132
 
@@ -172,7 +176,7 @@ Loaded env variables are also exposed to your source code via `import.meta.env`.
172
176
 
173
177
  To prevent accidentally leaking env variables for distribution, only variables prefixed with `KIRBYUP_` or `VITE_` are exposed to your processed code. Take the following file as an example:
174
178
 
175
- ```
179
+ ```ini
176
180
  DB_PASSWORD=foobar
177
181
  KIRBYUP_SOME_KEY=123
178
182
  ```
@@ -241,7 +245,8 @@ The output directory where the plugin file read by Kirby is saved. Defaults to t
241
245
 
242
246
  Specifies additional files that should be watched for changes, with changes causing the page to reload. Repeat `--watch` for multiple paths.
243
247
 
244
- > 💡 By default, kirbyup will watch all PHP files (`./**/*.php`) in the plugin directory and reload the page if it detects changes. Using `--watch` to set your own path overrides this setting, so you need to add the PHP glob explicitly if you want to keep the behavior: `--watch ./my/files/* --watch ./**/*.php`
248
+ > [!NOTE]
249
+ > By default, kirbyup will watch all PHP files (`./**/*.php`) in the plugin directory and reload the page if it detects changes. Using `--watch` to set your own path overrides this setting, so you need to add the PHP glob explicitly if you want to keep the behavior: `--watch ./my/files/* --watch ./**/*.php`
245
250
 
246
251
  ##### `--no-watch`
247
252
 
@@ -254,6 +259,6 @@ Disables the default behavior of watching all PHP files for changes.
254
259
 
255
260
  ## License
256
261
 
257
- [MIT](./LICENSE) License © 2021-2023 [Johann Schopplich](https://github.com/johannschopplich)
262
+ [MIT](./LICENSE) License © 2021-PRESENT [Johann Schopplich](https://github.com/johannschopplich)
258
263
 
259
- [MIT](./LICENSE) License © 2022-2023 [Jonas Kuske](https://github.com/jonaskuske)
264
+ [MIT](./LICENSE) License © 2022-PRESENT [Jonas Kuske](https://github.com/jonaskuske)
package/dist/node/cli.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { cac } from 'cac';
2
- import { n as name, b as build, s as serve, v as version, h as handleError } from '../shared/kirbyup.40eb0c24.mjs';
2
+ import { n as name, b as build, s as serve, v as version, h as handleError } from '../shared/kirbyup.3a78cfb2.mjs';
3
3
  import 'node:fs';
4
4
  import 'node:fs/promises';
5
5
  import 'pathe';
@@ -13,7 +13,7 @@ import 'rollup-plugin-external-globals';
13
13
  import 'postcss-load-config';
14
14
  import 'postcss-logical';
15
15
  import 'postcss-dir-pseudo-class';
16
- export { b as build, s as serve } from '../shared/kirbyup.40eb0c24.mjs';
16
+ export { b as build, s as serve } from '../shared/kirbyup.3a78cfb2.mjs';
17
17
  import 'node:zlib';
18
18
  import 'node:util';
19
19
  import 'node:buffer';
@@ -21,7 +21,7 @@ import MagicString from 'magic-string';
21
21
  import { detect } from 'detect-package-manager';
22
22
 
23
23
  const name = "kirbyup";
24
- const version = "3.0.1";
24
+ const version = "3.0.2";
25
25
 
26
26
  class PrettyError extends Error {
27
27
  constructor(message) {
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "kirbyup",
3
- "version": "3.0.1",
4
- "packageManager": "pnpm@8.7.4",
3
+ "type": "module",
4
+ "version": "3.0.2",
5
+ "packageManager": "pnpm@8.10.5",
5
6
  "description": "Zero-config bundler for Kirby Panel plugins",
6
7
  "author": {
7
8
  "name": "Johann Schopplich",
@@ -55,11 +56,11 @@
55
56
  "dist"
56
57
  ],
57
58
  "engines": {
58
- "node": ">=16"
59
+ "node": ">=18"
59
60
  },
60
61
  "scripts": {
61
62
  "build": "unbuild",
62
- "dev": "STUB=true unbuild",
63
+ "dev": "UNBUILD_STUB=true unbuild",
63
64
  "lint": "eslint .",
64
65
  "lint:fix": "eslint . --fix",
65
66
  "release": "bumpp --commit --push --tag",
@@ -70,38 +71,38 @@
70
71
  "dependencies": {
71
72
  "@vitejs/plugin-vue2": "2.2.0",
72
73
  "@vitejs/plugin-vue2-jsx": "1.1.0",
73
- "@vue/compiler-sfc": "^2.7.14",
74
+ "@vue/compiler-sfc": "^2.7.15",
74
75
  "cac": "^6.7.14",
75
76
  "chokidar": "^3.5.3",
76
77
  "consola": "^3.2.3",
77
78
  "detect-package-manager": "^3.0.1",
78
- "magic-string": "^0.30.3",
79
+ "magic-string": "^0.30.5",
79
80
  "pathe": "^1.1.1",
80
81
  "perfect-debounce": "^1.0.0",
81
- "postcss": "^8.4.29",
82
+ "postcss": "^8.4.31",
82
83
  "postcss-dir-pseudo-class": "^8.0.0",
83
84
  "postcss-load-config": "^4.0.1",
84
85
  "postcss-logical": "^7.0.0",
85
86
  "rollup-plugin-external-globals": "^0.8.0",
86
- "sass": "^1.66.1",
87
- "unconfig": "^0.3.10",
88
- "vite": "^4.4.9",
87
+ "sass": "^1.69.5",
88
+ "unconfig": "^0.3.11",
89
+ "vite": "^4.5.0",
89
90
  "vite-plugin-full-reload": "^1.0.5",
90
- "vue": "^2.7.14"
91
+ "vue": "^2.7.15"
91
92
  },
92
93
  "devDependencies": {
93
- "@antfu/eslint-config": "^0.41.0",
94
- "@types/fs-extra": "^11.0.1",
95
- "@types/node": "^18.17.15",
96
- "@types/prompts": "^2.4.4",
94
+ "@antfu/eslint-config": "^1.1.2",
95
+ "@types/fs-extra": "^11.0.4",
96
+ "@types/node": "^20.9.0",
97
+ "@types/prompts": "^2.4.8",
97
98
  "bumpp": "^9.2.0",
98
- "eslint": "^8.49.0",
99
- "fast-glob": "^3.3.1",
99
+ "eslint": "^8.53.0",
100
+ "fast-glob": "^3.3.2",
100
101
  "fs-extra": "^11.1.1",
101
102
  "simple-git-hooks": "^2.9.0",
102
103
  "typescript": "~5.2.2",
103
104
  "unbuild": "^2.0.0",
104
- "vitest": "^0.34.4"
105
+ "vitest": "^0.34.6"
105
106
  },
106
107
  "simple-git-hooks": {
107
108
  "commit-msg": "node scripts/verifyCommit.mjs $1"