fmath1 1.0.1

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.
Files changed (3) hide show
  1. package/maths.cjs +4 -0
  2. package/maths.mjs +5 -0
  3. package/package.json +12 -0
package/maths.cjs ADDED
@@ -0,0 +1,4 @@
1
+
2
+ module.exports = { num:101 };
3
+
4
+
package/maths.mjs ADDED
@@ -0,0 +1,5 @@
1
+
2
+ export const num = 101;
3
+
4
+ const feature101 = "Welcome to feature 101";
5
+ export default feature101;
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+
2
+ {
3
+ "name": "fmath1",
4
+ "version": "1.0.1",
5
+ "main": "maths.cjs",
6
+ "module": "maths.mjs",
7
+ "exports": {
8
+ "import": "./maths.mjs",
9
+ "require": "./maths.cjs"
10
+ }
11
+
12
+ }