pi-extensions 0.1.9 → 0.1.11
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/code-actions/CHANGELOG.md +6 -0
- package/code-actions/index.ts +5 -5
- package/code-actions/package.json +1 -1
- package/code-actions/src/index.ts +1 -0
- package/package.json +3 -1
- /package/code-actions/{actions.ts → src/actions.ts} +0 -0
- /package/code-actions/{search.ts → src/search.ts} +0 -0
- /package/code-actions/{snippets.ts → src/snippets.ts} +0 -0
- /package/code-actions/{ui.ts → src/ui.ts} +0 -0
|
@@ -1,4 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2 - 2026-01-26
|
|
4
|
+
- Add a src entry point so loading `code-actions/src` works with pi extension discovery.
|
|
5
|
+
|
|
6
|
+
## 0.1.1 - 2026-01-26
|
|
7
|
+
- Move extension source files into `code-actions/src` for clearer organization.
|
|
8
|
+
|
|
3
9
|
## 0.1.0 - 2026-01-13
|
|
4
10
|
- Initial release.
|
package/code-actions/index.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { ExtensionAPI, ExtensionCommandContext } from "@mariozechner/pi-coding-agent";
|
|
2
|
-
import { extractSnippets, extractText } from "./snippets";
|
|
3
|
-
import type { Snippet } from "./snippets";
|
|
4
|
-
import { pickAction, pickSnippet } from "./ui";
|
|
5
|
-
import type { PickResult } from "./ui";
|
|
6
|
-
import { copyToClipboard, insertIntoEditor, runSnippet } from "./actions";
|
|
2
|
+
import { extractSnippets, extractText } from "./src/snippets";
|
|
3
|
+
import type { Snippet } from "./src/snippets";
|
|
4
|
+
import { pickAction, pickSnippet } from "./src/ui";
|
|
5
|
+
import type { PickResult } from "./src/ui";
|
|
6
|
+
import { copyToClipboard, insertIntoEditor, runSnippet } from "./src/actions";
|
|
7
7
|
|
|
8
8
|
type ParsedArgs = {
|
|
9
9
|
scope: "last" | "all";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "../index";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-extensions",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
@@ -14,9 +14,11 @@
|
|
|
14
14
|
"./arcade/tetris.ts",
|
|
15
15
|
"./arcade/mario-not/mario-not.ts",
|
|
16
16
|
"./code-actions/index.ts",
|
|
17
|
+
"./control/control.ts",
|
|
17
18
|
"./files-widget/index.ts",
|
|
18
19
|
"./raw-paste/index.ts",
|
|
19
20
|
"./ralph-wiggum/index.ts",
|
|
21
|
+
"./review/review.ts",
|
|
20
22
|
"./relaunch/index.ts",
|
|
21
23
|
"./tab-status/tab-status.ts",
|
|
22
24
|
"./usage-extension/index.ts",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|