kozz-module-maker 0.2.6 → 0.2.7

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/.babelrc CHANGED
@@ -25,7 +25,7 @@
25
25
  {
26
26
  "root": ["./src"],
27
27
  "alias": {
28
- "src": "."
28
+ "src": "./dist"
29
29
  }
30
30
  }
31
31
  ]
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.createTemplatingComponent = exports.Stroke = exports.Render = exports.Paragraph = exports.Monospace = exports.ListItem = exports.List = exports.Line = exports.Italic = exports.ForEach = exports.Code = exports.Bold = void 0;
7
- var _InlineCommands = require("../../InlineCommands");
7
+ var _InlineCommands = require("../../dist/InlineCommands");
8
8
  const createTemplatingComponent = command => ({
9
9
  children
10
10
  }) => {
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "kozz-module-maker",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Library to create new module for the Kozz-Bot protocol",
5
5
  "main": "./dist",
6
6
  "license": "MIT",
7
7
  "scripts": {
8
8
  "build": "babel ./src --out-dir ./dist --extensions .ts,.tsx --copy-files",
9
9
  "dev": "npm run build -- --watch & nodemon --watch dist --exec 'npm run dist/debugIndex.js'",
10
- "publish": "tsc && bun run build && npm publish"
10
+ "pre-publish": "tsc && bun run build"
11
11
  },
12
12
  "peerDependencies": {
13
13
  "typescript": "^5.9.2"