Skip to content

Commit 2c096ff

Browse files
committed
chore: wip
1 parent 94f6aeb commit 2c096ff

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+145
-155
lines changed

.stacks/api/nitro.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineNitroConfig } from 'nitropack'
22
// import { alias } from '@stacksjs/alias'
33
// import { resolve } from '@stacksjs/path'
4-
// import { deploy } from '@stacksjs/config'
4+
// import { deploy } from '@stacksjs/config/user'
55

66
export default defineNitroConfig({
77
// alias,

.stacks/core/actions/src/helpers/lib-entries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { libraryEntryPath } from '@stacksjs/path'
44
import { writeTextFile } from '@stacksjs/storage'
55
import { determineResetPreset } from '@stacksjs/utils'
66
import type { LibEntryType } from '@stacksjs/types'
7-
import { library } from '@stacksjs/config'
7+
import { library } from '@stacksjs/config/user'
88

99
/**
1010
* Based on the config values, this method

.stacks/core/actions/src/helpers/package-json.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { log } from '@stacksjs/logging'
22
import { writeTextFile } from '@stacksjs/storage'
33
import { packageJsonPath } from '@stacksjs/path'
4-
import { library } from '@stacksjs/config'
4+
import { library } from '@stacksjs/config/user'
55
import { packageManager } from '../../package.json' assert { type: 'json' }
66

77
export async function generatePackageJson(type: 'vue-components' | 'web-components' | 'functions') {

.stacks/core/actions/src/helpers/vscode-custom-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { log } from '@stacksjs/logging'
22
import { customElementsDataPath } from '@stacksjs/path'
33
import { writeTextFile } from '@stacksjs/storage'
4-
import { library } from '@stacksjs/config'
4+
import { library } from '@stacksjs/config/user'
55

66
export async function generateVsCodeCustomData() {
77
try {

.stacks/core/build/src/functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { BuildOptions as ViteBuildOptions } from 'vite'
22
import { defineConfig } from 'vite'
33
import type { ViteConfig } from '@stacksjs/types'
44
import { buildEntriesPath, frameworkPath, functionsPath, projectPath } from '@stacksjs/path'
5-
import { library } from '@stacksjs/config'
5+
import { library } from '@stacksjs/config/user'
66
import { alias } from '@stacksjs/alias'
77
import { autoImports } from '.'
88

.stacks/core/build/src/vue-components.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { defineConfig } from 'vite'
22
import type { ViteConfig } from '@stacksjs/types'
33
import { buildEntriesPath, frameworkPath, projectPath } from '@stacksjs/path'
44
import type { BuildOptions as ViteBuildOptions } from 'vite'
5-
import { library } from '@stacksjs/config'
5+
import { library } from '@stacksjs/config/user'
66
import { server } from '@stacksjs/server'
77
import { alias } from '@stacksjs/alias'
88
import { autoImports, components, cssEngine, inspect, uiEngine } from './stacks'

.stacks/core/build/src/web-components.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { BuildOptions as ViteBuildOptions } from 'vite'
22
import { defineConfig } from 'vite'
33
import type { ViteConfig } from '@stacksjs/types'
44
import { buildEntriesPath, componentsPath, frameworkPath, projectPath } from '@stacksjs/path'
5-
import { library } from '@stacksjs/config'
5+
import { library } from '@stacksjs/config/user'
66
import { server } from '@stacksjs/server'
77
import { alias } from '@stacksjs/alias'
88
import { autoImports, components, cssEngine, inspect, uiEngine } from '.'

.stacks/core/build/web-types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { WebTypesBuilderConfig } from 'vue-docgen-web-types/types/config'
22
import { componentsPath, frameworkPath } from '@stacksjs/path'
3-
import { library } from '@stacksjs/config'
3+
import { library } from '@stacksjs/config/user'
44
import { frameworkVersion } from '@stacksjs/utils'
55

66
export default <WebTypesBuilderConfig> {

.stacks/core/cache/src/drivers/dynamodb.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export {}
22

33
// import type { PutItemCommandInput } from '@aws-sdk/client-dynamodb'
44
// import { DynamoDB, ListTablesCommand } from '@aws-sdk/client-dynamodb'
5-
// import { cache } from '@stacksjs/config'
5+
// import { cache } from '@stacksjs/config/user'
66

77
// const valueAttribute = 'value'
88
// const keyAttribute = 'key'

.stacks/core/cache/src/drivers/redis.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { RedisClientType } from 'redis'
22
import { createClient } from 'redis'
3-
import { cache } from '@stacksjs/config'
3+
import { cache } from '@stacksjs/config/user'
44

55
const client: RedisClientType = createClient({
66
socket: {

0 commit comments

Comments
 (0)