@blossom-monorepo-template/pkgc 0.0.0
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 +0 -0
- package/dist/index.js +7 -0
- package/package.json +20 -0
package/LICENSE
ADDED
|
File without changes
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.substract = exports.add = void 0;
|
|
4
|
+
var add = function (a, b) { return a + b; };
|
|
5
|
+
exports.add = add;
|
|
6
|
+
var substract = function (a, b) { return a - b; };
|
|
7
|
+
exports.substract = substract;
|
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@blossom-monorepo-template/pkgc",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"devDependencies": {
|
|
9
|
+
"rimraf": "^3.0.2",
|
|
10
|
+
"typescript": "^5.1.6"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"watch": "tsc index.ts --outDir dist --watch",
|
|
17
|
+
"build": "rimraf dist && tsc index.ts --outDir dist",
|
|
18
|
+
"prepublish": "pnpm run build"
|
|
19
|
+
}
|
|
20
|
+
}
|