@everyonesoftware/common 1.0.0 → 2.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.
@@ -33,6 +33,4 @@ jobs:
33
33
  run: npm test
34
34
 
35
35
  - name: Publish to NPM
36
- run: npm publish
37
- env:
38
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
36
+ run: npm publish
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@everyonesoftware/common",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "description": "A package containing common code for everyonesoftware projects.",
5
5
  "type": "module",
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
6
9
  "exports": {
7
10
  ".": {
8
11
  "types": "./outputs/sources.d.ts",
package/tsconfig.json CHANGED
@@ -12,6 +12,9 @@
12
12
  "declaration": true,
13
13
  "emitDeclarationOnly": true,
14
14
  "declarationMap": true,
15
+
16
+ "ignoreDeprecations": "6.0",
17
+ "types": ["node"]
15
18
  },
16
19
  "include": ["sources", "tests"]
17
20
  }