pi-extensions 0.1.9 → 0.1.10

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.
@@ -1,4 +1,7 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.1 - 2026-01-26
4
+ - Move extension source files into `code-actions/src` for clearer organization.
5
+
3
6
  ## 0.1.0 - 2026-01-13
4
7
  - Initial release.
@@ -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";
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tmustier/pi-code-actions",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pick code blocks or inline snippets from recent assistant messages to copy or insert.",
5
5
  "license": "MIT",
6
6
  "author": "Thomas Mustier",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-extensions",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
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