Skip to content

Commit

Permalink
feat(monorepo): Reorganize the package directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Dec 26, 2024
1 parent 914c970 commit 2845945
Show file tree
Hide file tree
Showing 423 changed files with 3,900 additions and 3,286 deletions.
43 changes: 22 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -172,27 +172,28 @@
"nth-check": ">=2.1.1",
"postcss": ">=8.4.47",
"follow-redirects": ">=1.15.9",
"@storm-stack/utilities": "1.39.0",
"@storm-stack/unique-identifier": "1.33.0",
"@storm-stack/date-time": "1.46.0",
"@storm-stack/errors": "1.40.0",
"@storm-stack/serialization": "1.46.0",
"@storm-stack/logging": "1.40.0",
"@storm-stack/file-system": "1.39.0",
"@storm-stack/cli": "1.40.0",
"@storm-stack/plugin-system": "1.23.0",
"@storm-stack/telemetry": "1.19.0",
"@storm-stack/server-cache": "0.17.0",
"@storm-stack/string-fns": "0.18.0",
"@storm-stack/types": "0.34.0",
"@storm-stack/hashing": "0.15.0",
"@storm-stack/server-result": "0.18.0",
"@storm-stack/hooks": "0.25.1",
"@storm-stack/env": "0.1.0",
"@storm-stack/build-plugin": "0.1.0",
"@storm-stack/build-nx": "1.3.0",
"@storm-stack/build-core": "0.0.1",
"@storm-stack/tools-config": "0.0.1"
"@storm-stack/utilities": "workspace:*",
"@storm-stack/unique-identifier": "workspace:*",
"@storm-stack/date-time": "workspace:*",
"@storm-stack/errors": "workspace:*",
"@storm-stack/serialization": "workspace:*",
"@storm-stack/logging": "workspace:*",
"@storm-stack/file-system": "workspace:*",
"@storm-stack/cli": "workspace:*",
"@storm-stack/plugin-system": "workspace:*",
"@storm-stack/telemetry": "workspace:*",
"@storm-stack/server-cache": "workspace:*",
"@storm-stack/string-fns": "workspace:*",
"@storm-stack/types": "workspace:*",
"@storm-stack/hashing": "workspace:*",
"@storm-stack/server-result": "workspace:*",
"@storm-stack/hooks": "workspace:*",
"@storm-stack/env": "workspace:*",
"@storm-stack/build-plugin": "workspace:*",
"@storm-stack/build-nx": "workspace:*",
"@storm-stack/build-core": "workspace:*",
"@storm-stack/tools-config": "workspace:*",
"@storm-stack/cli-helpers": "workspace:*"
}
},
"prettier": "@storm-software/prettier/config.json",
Expand Down
144 changes: 76 additions & 68 deletions packages/cli/CHANGELOG.md → packages/base/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,250 +2,258 @@

### Features

- **logging:** Update the `initialize` method signature in the `StormLog` class ([7b11262](https://github.com/storm-software/storm-stack/commit/7b11262))
- **logging:** Update the `initialize` method signature in the `StormLog` class
([7b11262](https://github.com/storm-software/storm-stack/commit/7b11262))

## 1.39.0 (2024-12-04)

### Features

- **cli:** Update CLI program function name ([9a8dc91](https://github.com/storm-software/storm-stack/commit/9a8dc91))
- **cli:** Update CLI program function name
([9a8dc91](https://github.com/storm-software/storm-stack/commit/9a8dc91))

## 1.38.0 (2024-12-02)

### Features

- **monorepo:** Upgrade workflow actions to use the new base processes ([14d2f2f](https://github.com/storm-software/storm-stack/commit/14d2f2f))
- **monorepo:** Upgrade workflow actions to use the new base processes
([14d2f2f](https://github.com/storm-software/storm-stack/commit/14d2f2f))

## 1.37.0 (2024-11-10)

### Features

- **date-time:** Resolve issue parsing ISO string in `StormDateTime` constructor ([c8032d6](https://github.com/storm-software/storm-stack/commit/c8032d6))
- **date-time:** Resolve issue parsing ISO string in `StormDateTime` constructor
([c8032d6](https://github.com/storm-software/storm-stack/commit/c8032d6))

## 1.36.0 (2024-11-10)

### Features

- **cli:** Added `@antfu/install-pkg` to improve install ([26cf962](https://github.com/storm-software/storm-stack/commit/26cf962))
- **cli:** Added `@antfu/install-pkg` to improve install
([26cf962](https://github.com/storm-software/storm-stack/commit/26cf962))

## 1.35.0 (2024-11-10)

### Features

- **cli:** Added the `execute` and `install` utility functions ([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259))
- **cli:** Added the `execute` and `install` utility functions
([8b04259](https://github.com/storm-software/storm-stack/commit/8b04259))

## 1.34.0 (2024-11-08)

### Features

- **monorepo:** Upgrade the workspace's Nx package versions ([075a024](https://github.com/storm-software/storm-stack/commit/075a024))
- **monorepo:** Upgrade the workspace's Nx package versions
([075a024](https://github.com/storm-software/storm-stack/commit/075a024))

## 1.33.0 (2024-11-08)

### Features

- **types:** Regenerate packages with upgraded ops packages ([936026a](https://github.com/storm-software/storm-stack/commit/936026a))
- **types:** Regenerate packages with upgraded ops packages
([936026a](https://github.com/storm-software/storm-stack/commit/936026a))

## 1.32.0 (2024-11-08)


### Features

- **errors:** Added the `createFromData` helper function ([c15576d](https://github.com/storm-software/storm-stack/commit/c15576d))
- **errors:** Added the `createFromData` helper function
([c15576d](https://github.com/storm-software/storm-stack/commit/c15576d))

## 1.31.0 (2024-11-07)


### Features

- **date-time:** Added the `getMonthIndex` helper function ([8d979d2](https://github.com/storm-software/storm-stack/commit/8d979d2))
- **date-time:** Added the `getMonthIndex` helper function
([8d979d2](https://github.com/storm-software/storm-stack/commit/8d979d2))

## 1.30.2 (2024-10-27)


### Bug Fixes

- **date-time:** Update static function to no longer be constants ([f366ffe](https://github.com/storm-software/storm-stack/commit/f366ffe))
- **date-time:** Update static function to no longer be constants
([f366ffe](https://github.com/storm-software/storm-stack/commit/f366ffe))

## 1.30.1 (2024-10-26)


### Bug Fixes

- **hooks:** Resolve issue updating element reference in `useHook` hook ([340e2f4](https://github.com/storm-software/storm-stack/commit/340e2f4))
- **hooks:** Resolve issue updating element reference in `useHook` hook
([340e2f4](https://github.com/storm-software/storm-stack/commit/340e2f4))

## 1.30.0 (2024-10-26)


### Features

- **types:** Added the `isFileResult` type-checker and updated `status` field ([2fc6410](https://github.com/storm-software/storm-stack/commit/2fc6410))
- **types:** Added the `isFileResult` type-checker and updated `status` field
([2fc6410](https://github.com/storm-software/storm-stack/commit/2fc6410))

## 1.29.2 (2024-10-24)


### Bug Fixes

- **date-time:** Update the conditionals in validate functions ([f5f4e26](https://github.com/storm-software/storm-stack/commit/f5f4e26))
- **date-time:** Update the conditionals in validate functions
([f5f4e26](https://github.com/storm-software/storm-stack/commit/f5f4e26))

## 1.29.1 (2024-10-24)


### Bug Fixes

- **date-time:** Resolve issue with the date-time format functions ([f385b23](https://github.com/storm-software/storm-stack/commit/f385b23))
- **date-time:** Resolve issue with the date-time format functions
([f385b23](https://github.com/storm-software/storm-stack/commit/f385b23))

## 1.29.0 (2024-10-24)


### Features

- **hooks:** Added the `composeRefs` function and hook ([80a1379](https://github.com/storm-software/storm-stack/commit/80a1379))
- **hooks:** Added the `composeRefs` function and hook
([80a1379](https://github.com/storm-software/storm-stack/commit/80a1379))

## 1.28.0 (2024-10-22)


### Features

- **monorepo:** Use latest storm build tools in monorepo ([6bf00c5](https://github.com/storm-software/storm-stack/commit/6bf00c5))
- **monorepo:** Use latest storm build tools in monorepo
([6bf00c5](https://github.com/storm-software/storm-stack/commit/6bf00c5))

## 1.27.2 (2024-10-20)


### Bug Fixes

- **date-time:** Resolve issue with parsing ISO-8601 string ([a63273e](https://github.com/storm-software/storm-stack/commit/a63273e))
- **date-time:** Resolve issue with parsing ISO-8601 string
([a63273e](https://github.com/storm-software/storm-stack/commit/a63273e))

## 1.27.1 (2024-10-20)


### Bug Fixes

- **date-time:** Resolved issue with creating date-time in validation function ([2a3c1e8](https://github.com/storm-software/storm-stack/commit/2a3c1e8))
- **date-time:** Resolved issue with creating date-time in validation function
([2a3c1e8](https://github.com/storm-software/storm-stack/commit/2a3c1e8))

## 1.27.0 (2024-10-18)


### Features

- **date-time:** Provide time zone to the formatting function ([318ab55](https://github.com/storm-software/storm-stack/commit/318ab55))
- **date-time:** Provide time zone to the formatting function
([318ab55](https://github.com/storm-software/storm-stack/commit/318ab55))

## 1.26.0 (2024-10-18)


### Features

- **date-time:** Added new flags to formatting options for helper functions ([b702d6c](https://github.com/storm-software/storm-stack/commit/b702d6c))

- **date-time:** Added new flags to formatting options for helper functions
([b702d6c](https://github.com/storm-software/storm-stack/commit/b702d6c))

### Bug Fixes

- **serialization:** Resolved stack overflow issue with `StormParser` class ([f890df9](https://github.com/storm-software/storm-stack/commit/f890df9))
- **serialization:** Resolved stack overflow issue with `StormParser` class
([f890df9](https://github.com/storm-software/storm-stack/commit/f890df9))

## 1.25.0 (2024-10-15)


### Features

- **types:** Added the `index` and `status` properties to the `SelectOption` type ([7da9603](https://github.com/storm-software/storm-stack/commit/7da9603))
- **types:** Added the `index` and `status` properties to the `SelectOption`
type ([7da9603](https://github.com/storm-software/storm-stack/commit/7da9603))

## 1.24.0 (2024-10-14)


### Features

- **types:** Added the `description` property to the `SelectOption` type ([94c33d2](https://github.com/storm-software/storm-stack/commit/94c33d2))
- **types:** Added the `description` property to the `SelectOption` type
([94c33d2](https://github.com/storm-software/storm-stack/commit/94c33d2))

## 1.23.0 (2024-10-11)


### Features

- **types:** Added the `help` and `success` ValidationDetail message types ([207bf67](https://github.com/storm-software/storm-stack/commit/207bf67))
- **types:** Added the `help` and `success` ValidationDetail message types
([207bf67](https://github.com/storm-software/storm-stack/commit/207bf67))

## 1.22.0 (2024-10-10)


### Features

- **utilities:** Added the `toPath` and `toDeepKey` functions ([1977f13](https://github.com/storm-software/storm-stack/commit/1977f13))
- **utilities:** Added the `toPath` and `toDeepKey` functions
([1977f13](https://github.com/storm-software/storm-stack/commit/1977f13))

## 1.21.2 (2024-10-10)


### Bug Fixes

- **monorepo:** Regenerate markup after token update ([a37ef2a](https://github.com/storm-software/storm-stack/commit/a37ef2a))
- **monorepo:** Regenerate markup after token update
([a37ef2a](https://github.com/storm-software/storm-stack/commit/a37ef2a))

## 1.21.1 (2024-10-10)


### Bug Fixes

- **types:** Added missing tags and regenerated markdown ([7ab98cc](https://github.com/storm-software/storm-stack/commit/7ab98cc))
- **types:** Added missing tags and regenerated markdown
([7ab98cc](https://github.com/storm-software/storm-stack/commit/7ab98cc))

## 1.21.0 (2024-10-10)


### Features

- **utilities:** Update the base Nx configuration ([99988e0](https://github.com/storm-software/storm-stack/commit/99988e0))

- **utilities:** Update the base Nx configuration
([99988e0](https://github.com/storm-software/storm-stack/commit/99988e0))

### Bug Fixes

- **monorepo:** Update the Nx configuration to include release process specifications ([df311f7](https://github.com/storm-software/storm-stack/commit/df311f7))
- **monorepo:** Update the Nx configuration to include release process
specifications
([df311f7](https://github.com/storm-software/storm-stack/commit/df311f7))

## 1.20.4 (2024-10-10)


### Bug Fixes

- **monorepo:** Regenerate the README file formatting ([b81153c](https://github.com/storm-software/storm-stack/commit/b81153c))
- **monorepo:** Regenerate the README file formatting
([b81153c](https://github.com/storm-software/storm-stack/commit/b81153c))

## 1.20.3 (2024-10-09)


### Bug Fixes

- **utilities:** Reformatting the README files ([723d68b](https://github.com/storm-software/storm-stack/commit/723d68b))
- **utilities:** Reformatting the README files
([723d68b](https://github.com/storm-software/storm-stack/commit/723d68b))

## 1.20.2 (2024-10-08)


### Bug Fixes

- **types:** Regenerate the monorepo markdown files ([2b5818e](https://github.com/storm-software/storm-stack/commit/2b5818e))
- **types:** Regenerate the monorepo markdown files
([2b5818e](https://github.com/storm-software/storm-stack/commit/2b5818e))

## 1.20.1 (2024-10-08)


### Bug Fixes

- **monorepo:** Resolve issue with markdown across entire monorepo ([ee6720c](https://github.com/storm-software/storm-stack/commit/ee6720c))
- **monorepo:** Resolve issue with markdown across entire monorepo
([ee6720c](https://github.com/storm-software/storm-stack/commit/ee6720c))

## 1.20.0 (2024-10-08)


### Features

- **utilities:** Added the flatten and unflatten utility functions and helper types ([702d44d](https://github.com/storm-software/storm-stack/commit/702d44d))
- **utilities:** Added the flatten and unflatten utility functions and helper
types
([702d44d](https://github.com/storm-software/storm-stack/commit/702d44d))

## 1.19.1 (2024-09-15)


### Bug Fixes

- **monorepo:** Resolve issues in git hook configurations ([f925f93](https://github.com/storm-software/storm-stack/commit/f925f93))
- **monorepo:** Resolve issues in git hook configurations
([f925f93](https://github.com/storm-software/storm-stack/commit/f925f93))

## 1.19.0 (2024-09-14)


### Features

- **file-system:** Added banner to source control ([0c7bafc](https://github.com/storm-software/storm-stack/commit/0c7bafc))


- **file-system:** Added banner to source control
([0c7bafc](https://github.com/storm-software/storm-stack/commit/0c7bafc))

## 1.17.0 (2024-02-10)

Expand Down
Loading

0 comments on commit 2845945

Please sign in to comment.