@wix/npmjs-exemplar-lib 1.12.0 → 1.13.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/dist/index.js +4 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.meaningOfLife = meaningOfLife;
|
|
4
|
+
exports.whatIsTheQuestion = whatIsTheQuestion;
|
|
4
5
|
function meaningOfLife() {
|
|
5
6
|
return 42;
|
|
6
7
|
}
|
|
8
|
+
function whatIsTheQuestion() {
|
|
9
|
+
return "What do you get when you multiply six by nine?";
|
|
10
|
+
}
|
|
7
11
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/npmjs-exemplar-lib",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.0",
|
|
4
4
|
"files": [
|
|
5
5
|
"./dist/*"
|
|
6
6
|
],
|
|
@@ -27,5 +27,5 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"typescript": "^5.9.3"
|
|
29
29
|
},
|
|
30
|
-
"falconPackageHash": "
|
|
30
|
+
"falconPackageHash": "8e99f94d510e436254272ef75c0cc50b2553450d4e231e5a6253333e"
|
|
31
31
|
}
|