@stacksjs/enums 0.70.55 → 0.70.56
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/package.json +10 -7
- package/src/index.ts +0 -131
- /package/dist/{src/index.d.ts → index.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/enums",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.70.
|
|
4
|
+
"version": "0.70.56",
|
|
5
5
|
"description": "Stacks enums.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"contributors": [
|
|
@@ -27,18 +27,21 @@
|
|
|
27
27
|
"exports": {
|
|
28
28
|
".": {
|
|
29
29
|
"types": "./dist/index.d.ts",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
30
|
+
"development": "./src/index.ts",
|
|
31
|
+
"bun": "./dist/index.js",
|
|
32
|
+
"import": "./dist/index.js",
|
|
33
|
+
"default": "./dist/index.js"
|
|
32
34
|
},
|
|
33
35
|
"./*": {
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
+
"development": "./src/*",
|
|
37
|
+
"bun": "./dist/*",
|
|
38
|
+
"import": "./dist/*",
|
|
39
|
+
"default": "./dist/*"
|
|
36
40
|
}
|
|
37
41
|
},
|
|
38
42
|
"files": [
|
|
39
43
|
"README.md",
|
|
40
|
-
"dist"
|
|
41
|
-
"src"
|
|
44
|
+
"dist"
|
|
42
45
|
],
|
|
43
46
|
"scripts": {
|
|
44
47
|
"build": "bun build.ts",
|
package/src/index.ts
DELETED
|
@@ -1,131 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* The available npm scripts within the Stacks toolkit.
|
|
3
|
-
*/
|
|
4
|
-
export enum NpmScript {
|
|
5
|
-
Build = 'build',
|
|
6
|
-
BuildComponents = 'vite build --config ./src/vite-config/src/components.ts',
|
|
7
|
-
BuildWebComponents = 'build:web-components',
|
|
8
|
-
BuildFunctions = 'build:functions',
|
|
9
|
-
BuildDocs = 'build:docs',
|
|
10
|
-
BuildStacks = 'build:stacks',
|
|
11
|
-
Clean = 'bunx --bun rimraf bun.lock node_modules/ stacks/**/dist',
|
|
12
|
-
Dev = 'dev',
|
|
13
|
-
DevApi = 'dev:api',
|
|
14
|
-
DevDocs = 'dev:docs',
|
|
15
|
-
DevDesktop = 'dev:desktop',
|
|
16
|
-
DevFunctions = 'dev:functions',
|
|
17
|
-
Fresh = 'fresh',
|
|
18
|
-
Lint = 'bunx --bun pickier .',
|
|
19
|
-
LintFix = 'bunx --bun pickier . --fix',
|
|
20
|
-
LintPackageJson = 'publint',
|
|
21
|
-
MakeStack = 'make:stack',
|
|
22
|
-
Test = 'bun test ./tests/feature/** ./tests/unit/**',
|
|
23
|
-
TestUnit = 'bun test ./tests/unit/**',
|
|
24
|
-
TestFeature = 'bun test ./tests/feature/**',
|
|
25
|
-
TestUi = 'bun test 3',
|
|
26
|
-
TestTypes = 'tsc --noEmit',
|
|
27
|
-
Generate = 'generate',
|
|
28
|
-
GenerateTypes = 'generate:types',
|
|
29
|
-
GenerateEntries = 'generate:entries',
|
|
30
|
-
GenerateWebTypes = 'generate:web-types',
|
|
31
|
-
GenerateIdeHelpers = 'generate:ide-helpers',
|
|
32
|
-
GenerateComponentMeta = 'generate:component-meta',
|
|
33
|
-
Release = 'release',
|
|
34
|
-
Commit = 'commit',
|
|
35
|
-
Example = 'example',
|
|
36
|
-
ExampleVue = 'example:vue',
|
|
37
|
-
ExampleWebComponents = 'example:web-components',
|
|
38
|
-
KeyGenerate = 'key:generate',
|
|
39
|
-
TypesFix = 'types:fix',
|
|
40
|
-
TypesGenerate = 'types:generate',
|
|
41
|
-
Preinstall = 'preinstall',
|
|
42
|
-
Prepublish = 'prepublish',
|
|
43
|
-
UpgradeBun = './storage/framework/scripts/setup.sh +bun.sh',
|
|
44
|
-
UpgradeDependencies = 'pantry --update && bun install',
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
export enum Action {
|
|
48
|
-
Bump = 'bump',
|
|
49
|
-
BuildViews = 'build/views',
|
|
50
|
-
BuildStacks = 'build/stacks',
|
|
51
|
-
BuildComponentLibs = 'build/component-libs',
|
|
52
|
-
BuildVueComponentLib = 'build-vue-component-lib',
|
|
53
|
-
BuildWebComponentLib = 'build-web-component-lib',
|
|
54
|
-
BuildFunctionLib = 'build-function-lib',
|
|
55
|
-
BuildCli = 'build/cli',
|
|
56
|
-
BuildCore = 'build/core',
|
|
57
|
-
BuildDesktop = 'build/desktop',
|
|
58
|
-
BuildDocs = 'build/docs',
|
|
59
|
-
BuildFrontendStatic = 'build/frontend-static',
|
|
60
|
-
BuildServer = 'build/server',
|
|
61
|
-
Changelog = 'changelog',
|
|
62
|
-
CheckPorts = 'check/ports',
|
|
63
|
-
Clean = 'clean',
|
|
64
|
-
CreatePersonalAccessClient = 'auth/token',
|
|
65
|
-
AuthSetup = 'auth/setup',
|
|
66
|
-
AuthClient = 'auth/client',
|
|
67
|
-
AuthPrune = 'auth/prune',
|
|
68
|
-
DevComponents = 'dev/components',
|
|
69
|
-
DevDashboard = 'dev/dashboard',
|
|
70
|
-
DevSystemTray = 'dev/system-tray',
|
|
71
|
-
Dev = 'dev/views',
|
|
72
|
-
DevApi = 'dev/api',
|
|
73
|
-
DevDesktop = 'dev/desktop',
|
|
74
|
-
DevDocs = 'dev/docs',
|
|
75
|
-
Deploy = 'deploy/index',
|
|
76
|
-
DomainsAdd = 'domains/add',
|
|
77
|
-
DomainsPurchase = 'domains/purchase',
|
|
78
|
-
DomainsRemove = 'domains/remove',
|
|
79
|
-
FindProjects = 'find-projects',
|
|
80
|
-
Fresh = 'fresh',
|
|
81
|
-
GenerateLibraryEntries = 'generate/lib-entries',
|
|
82
|
-
Inspire = 'inspire',
|
|
83
|
-
KeyGenerate = 'key-generate',
|
|
84
|
-
MakeNotification = 'make-notification',
|
|
85
|
-
Migrate = 'migrate/database',
|
|
86
|
-
MigrateFresh = 'migrate/fresh',
|
|
87
|
-
MigrateDns = 'migrate/dns',
|
|
88
|
-
Seed = 'database/seed',
|
|
89
|
-
Lint = 'lint/index',
|
|
90
|
-
LintFix = 'lint/fix',
|
|
91
|
-
Prepublish = 'prepublish',
|
|
92
|
-
QueueTable = 'queue/table',
|
|
93
|
-
QueueWork = 'queue/work',
|
|
94
|
-
QueueRetry = 'queue/retry',
|
|
95
|
-
QueueFailed = 'queue/failed',
|
|
96
|
-
QueueClear = 'queue/clear',
|
|
97
|
-
QueueStatus = 'queue/status',
|
|
98
|
-
QueueFlush = 'queue/flush',
|
|
99
|
-
QueueMonitor = 'queue/monitor',
|
|
100
|
-
QueueInspect = 'queue/inspect',
|
|
101
|
-
QueueList = 'queue/list',
|
|
102
|
-
// stacksjs/stacks#1885 — DLQ + poison + circuit-breaker CLI
|
|
103
|
-
QueueDlq = 'queue/dlq',
|
|
104
|
-
QueueDlqRetry = 'queue/dlq-retry',
|
|
105
|
-
QueueDlqPurge = 'queue/dlq-purge',
|
|
106
|
-
QueueQuarantine = 'queue/quarantine',
|
|
107
|
-
QueueUnquarantine = 'queue/unquarantine',
|
|
108
|
-
QueuePause = 'queue/pause',
|
|
109
|
-
QueueResume = 'queue/resume',
|
|
110
|
-
QueueSchedule = 'queue/schedule',
|
|
111
|
-
QueueScheduleList = 'queue/schedule-list',
|
|
112
|
-
Release = 'release', // ✅
|
|
113
|
-
RouteList = 'route/list', // ✅
|
|
114
|
-
StripeSetup = 'saas/setup',
|
|
115
|
-
SearchEngineImport = 'search/import',
|
|
116
|
-
SearchEngineFlush = 'search/flush',
|
|
117
|
-
SearchEngineListSettings = 'search/settings-list',
|
|
118
|
-
SearchEnginePushSettings = 'search/settings',
|
|
119
|
-
ScheduleRun = 'schedule/run',
|
|
120
|
-
Test = 'test/index',
|
|
121
|
-
TestUi = 'test/ui',
|
|
122
|
-
TestUnit = 'test/unit',
|
|
123
|
-
TestFeature = 'test/feature',
|
|
124
|
-
Typecheck = 'typecheck',
|
|
125
|
-
Upgrade = 'upgrade/index',
|
|
126
|
-
UpgradeBinary = 'upgrade/binary', // the `stacks` binary
|
|
127
|
-
UpgradeBun = 'upgrade/bun',
|
|
128
|
-
UpgradeDeps = 'upgrade/dependencies',
|
|
129
|
-
UpgradeFramework = 'upgrade/framework',
|
|
130
|
-
UpgradeShell = 'upgrade/shell',
|
|
131
|
-
}
|
|
File without changes
|