rollipop 1.0.0-alpha.25 → 1.0.0-alpha.26

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/dist/constants.js CHANGED
@@ -19,7 +19,7 @@ var constants_exports = /* @__PURE__ */ __exportAll({
19
19
  ROLLIPOP_VIRTUAL_ENTRY_ID: () => ROLLIPOP_VIRTUAL_ENTRY_ID,
20
20
  ROLLIPOP_VIRTUAL_PREFIX: () => ROLLIPOP_VIRTUAL_PREFIX
21
21
  });
22
- const ROLLIPOP_VERSION = "1.0.0-alpha.25";
22
+ const ROLLIPOP_VERSION = "1.0.0-alpha.26";
23
23
  const ROLLIPOP_VIRTUAL_PREFIX = "\0rollipop/";
24
24
  const ROLLIPOP_VIRTUAL_ENTRY_ID = `${ROLLIPOP_VIRTUAL_PREFIX}entry`;
25
25
  /**
package/dist/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  //#region package.json
2
- var version = "1.0.0-alpha.25";
2
+ var version = "1.0.0-alpha.26";
3
3
  //#endregion
4
4
  export { version };
@@ -9,7 +9,7 @@ import fp from "fastify-plugin";
9
9
  function createMcpServer(options) {
10
10
  const server = new McpServer({
11
11
  name: "rollipop",
12
- version: "1.0.0-alpha.25"
12
+ version: "1.0.0-alpha.26"
13
13
  }, { capabilities: { logging: {} } });
14
14
  registerTools(server, options);
15
15
  return server;
@@ -28,7 +28,7 @@ var FileStorage = class FileStorage {
28
28
  this.dataFilePath = path.join(FileStorage.getPath(basePath, { prepare: true }), DATA_FILENAME);
29
29
  if (fs.existsSync(this.dataFilePath)) {
30
30
  const loadedData = JSON.parse(fs.readFileSync(this.dataFilePath, "utf-8"));
31
- if ("version" in loadedData && loadedData.version === "1.0.0-alpha.25") this.data = loadedData;
31
+ if ("version" in loadedData && loadedData.version === "1.0.0-alpha.26") this.data = loadedData;
32
32
  else {
33
33
  this.data = createDefaultData();
34
34
  this.flush();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollipop",
3
- "version": "1.0.0-alpha.25",
3
+ "version": "1.0.0-alpha.26",
4
4
  "stableVersion": "1.0.0-alpha.23",
5
5
  "homepage": "https://github.com/rollipop-dev/rollipop#readme",
6
6
  "bugs": {
@@ -70,7 +70,7 @@
70
70
  "@react-native-community/cli-types": "20.1.3",
71
71
  "@react-native/babel-plugin-codegen": "0.86.0",
72
72
  "@react-native/dev-middleware": "0.86.0",
73
- "@rollipop/dashboard": "0.0.0",
73
+ "@rollipop/dashboard": "1.0.0-alpha.26",
74
74
  "@rollipop/rolldown": "1.0.19",
75
75
  "@swc/core": "1.15.41",
76
76
  "@swc/helpers": "0.5.23",