@bobfrankston/npmglobalize 1.0.12 → 1.0.18
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/cli.js +8 -0
- package/lib.d.ts +8 -3
- package/lib.js +427 -94
- package/package.json +2 -1
- package/.gitattributes +0 -10
- package/.globalize.jsonc +0 -8
- package/.vscode/settings.json +0 -22
- package/.vscode/spellright.dict +0 -2
- package/.vscode/tasks.json +0 -20
- package/cli.d.ts.map +0 -1
- package/cli.js.map +0 -1
- package/cli.ts +0 -197
- package/index.d.ts.map +0 -1
- package/index.js.map +0 -1
- package/index.ts +0 -12
- package/lib.d.ts.map +0 -1
- package/lib.js.map +0 -1
- package/lib.ts +0 -993
- package/token.env +0 -10
- package/token.env.example +0 -9
- package/tsconfig.json +0 -28
package/token.env
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
# NPM Authentication Token
|
|
2
|
-
# Copy this file to token.env and replace with your actual token
|
|
3
|
-
# Get token from: https://www.npmjs.com/settings/[username]/tokens
|
|
4
|
-
#
|
|
5
|
-
# Generate a Granular Access Token with:
|
|
6
|
-
# - Permissions: Read and write
|
|
7
|
-
# - Bypass 2FA requirement: Enabled
|
|
8
|
-
#
|
|
9
|
-
NPM_TOKEN=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
|
|
10
|
-
|
package/token.env.example
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# NPM Authentication Token
|
|
2
|
-
# Copy this file to token.env and replace with your actual token
|
|
3
|
-
# Get token from: https://www.npmjs.com/settings/[username]/tokens
|
|
4
|
-
#
|
|
5
|
-
# Generate a Granular Access Token with:
|
|
6
|
-
# - Permissions: Read and write
|
|
7
|
-
# - Bypass 2FA requirement: Enabled
|
|
8
|
-
#
|
|
9
|
-
NPM_TOKEN=npm_YOUR_TOKEN_HERE
|
package/tsconfig.json
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "esnext",
|
|
4
|
-
"module": "NodeNext",
|
|
5
|
-
"moduleResolution": "NodeNext",
|
|
6
|
-
"allowSyntheticDefaultImports": true,
|
|
7
|
-
"esModuleInterop": true,
|
|
8
|
-
"allowJs": true,
|
|
9
|
-
"strict": true,
|
|
10
|
-
"forceConsistentCasingInFileNames": true,
|
|
11
|
-
"skipLibCheck": true,
|
|
12
|
-
"declaration": true,
|
|
13
|
-
"declarationMap": true,
|
|
14
|
-
"sourceMap": true,
|
|
15
|
-
"strictNullChecks": false,
|
|
16
|
-
"noImplicitAny": true,
|
|
17
|
-
"noImplicitReturns": false,
|
|
18
|
-
"noImplicitThis": true,
|
|
19
|
-
"newLine": "lf"
|
|
20
|
-
},
|
|
21
|
-
"exclude": [
|
|
22
|
-
"node_modules",
|
|
23
|
-
"cruft",
|
|
24
|
-
".git",
|
|
25
|
-
"tests",
|
|
26
|
-
"prev"
|
|
27
|
-
]
|
|
28
|
-
}
|