@acm-uiuc/js-shared 2.1.0 → 2.2.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.
@@ -0,0 +1,3 @@
1
+ export declare const MembershipPriceCents = 2000;
2
+ export declare const MembershipPriceString: string;
3
+ export declare const MembershipPriceIdStripe = "price_1MUGIRDiGOXU9RuSChPYK6wZ";
@@ -0,0 +1,3 @@
1
+ export const MembershipPriceCents = 2000;
2
+ export const MembershipPriceString = (MembershipPriceCents / 100).toLocaleString("en-US", { style: "currency", currency: "USD" });
3
+ export const MembershipPriceIdStripe = "price_1MUGIRDiGOXU9RuSChPYK6wZ";
package/dist/index.d.ts CHANGED
@@ -1 +1,2 @@
1
1
  export * from "./orgs";
2
+ export * from "./constants";
package/dist/index.js CHANGED
@@ -1 +1,2 @@
1
1
  export * from "./orgs";
2
+ export * from "./constants";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acm-uiuc/js-shared",
3
- "version": "2.1.0",
3
+ "version": "2.2.0",
4
4
  "description": "ACM UIUC Shared JS code",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -28,4 +28,4 @@
28
28
  "publishConfig": {
29
29
  "registry": "https://registry.npmjs.org"
30
30
  }
31
- }
31
+ }