@bigstrider/greeting-package 2.0.0-alpha.0 → 2.0.0-beta.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.
package/lib/index.cjs CHANGED
@@ -1,10 +1,10 @@
1
1
  'use strict';
2
2
 
3
- const monarchCats = ["Garfield", "Felix"];
3
+ const monarchCats = ['Garfield', 'Felix', 'Grumpy'];
4
4
  const morningGreet = (name) => {
5
- let greet = "Good morning ";
5
+ let greet = 'Good morning ';
6
6
  if (monarchCats.includes(name)) {
7
- greet = "Good morning, your MAJESTY, ";
7
+ greet = 'Good morning, your MAJESTY, ';
8
8
  }
9
9
  return greet + name;
10
10
  };
package/lib/index.esm.js CHANGED
@@ -1,8 +1,8 @@
1
- const monarchCats = ["Garfield", "Felix"];
1
+ const monarchCats = ['Garfield', 'Felix', 'Grumpy'];
2
2
  const morningGreet = (name) => {
3
- let greet = "Good morning ";
3
+ let greet = 'Good morning ';
4
4
  if (monarchCats.includes(name)) {
5
- greet = "Good morning, your MAJESTY, ";
5
+ greet = 'Good morning, your MAJESTY, ';
6
6
  }
7
7
  return greet + name;
8
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigstrider/greeting-package",
3
- "version": "2.0.0-alpha.0",
3
+ "version": "2.0.0-beta.1",
4
4
  "description": "This package is for greeting a person during the day",
5
5
  "type": "module",
6
6
  "main": "lib/index.cjs",