Skip to content

Commit

Permalink
packages -> deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nikoloza committed Dec 30, 2024
1 parent 0e75dd3 commit 210baf6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/cli/bin/fs.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ const {
removeValueFromArray
} = utils

let singleFileKeys = ['designSystem', 'state', 'files', 'dependencies', 'packages']
let singleFileKeys = ['designSystem', 'state', 'files', 'dependencies']
const directoryKeys = ['components', 'snippets', 'pages', 'functions', 'methods']

const defaultExports = ['pages', 'designSystem', 'state', 'files', 'dependencies', 'packages', 'schema']
const defaultExports = ['pages', 'designSystem', 'state', 'files', 'dependencies', 'schema']

export async function createFs (
body,
Expand Down
2 changes: 1 addition & 1 deletion packages/create/src/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export const prepareMethods = (context) => {

const cachedDeps = {}
export const prepareDependencies = ({
packages: dependencies,
dependencies,
dependenciesOnDemand,
document
}) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/socket/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const connect = (key, options = {}) => {

socket.on('connect', () => {
if (isDev) {
console.log(
console.warn(
`Connected to %c${primaryUrl} %c${key} %c${socket.id}`,
'font-weight: bold; color: green;',
'font-weight: bold;',
Expand Down

0 comments on commit 210baf6

Please sign in to comment.