@icebreakers/monorepo 0.0.1 → 0.0.3

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/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @icebreakers/monorepo
2
+
3
+ ```sh
4
+ npx @icebreakers/monorepo@latest
5
+ ```
@@ -1,4 +1,4 @@
1
1
  # https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository
2
2
 
3
3
  github: [sonofmagic]
4
- custom: ["https://github.com/sonofmagic/sponsors"]
4
+ custom: ['https://github.com/sonofmagic/sponsors']
@@ -14,4 +14,4 @@ contact_links:
14
14
  # about: Love Vue.js? Please consider supporting us via Patreon.
15
15
  # - name: Open Collective
16
16
  # url: https://opencollective.com/vuejs/donate
17
- # about: Love Vue.js? Please consider supporting us via Open Collective.
17
+ # about: Love Vue.js? Please consider supporting us via Open Collective.
@@ -34,7 +34,7 @@ jobs:
34
34
  uses: actions/setup-node@v4
35
35
  with:
36
36
  node-version: ${{ matrix.node-version }}
37
- cache: 'pnpm'
37
+ cache: pnpm
38
38
 
39
39
  - name: Install dependencies
40
40
  run: pnpm install
@@ -9,7 +9,7 @@ on:
9
9
  concurrency: ${{ github.workflow }}-${{ github.ref }}
10
10
  env:
11
11
  HUSKY: 0
12
-
12
+
13
13
  jobs:
14
14
  release:
15
15
  name: Release
@@ -24,7 +24,7 @@ jobs:
24
24
  uses: actions/setup-node@v4
25
25
  with:
26
26
  node-version: 20
27
- cache: 'pnpm'
27
+ cache: pnpm
28
28
 
29
29
  - name: Install Dependencies
30
30
  run: pnpm i
@@ -47,4 +47,3 @@ jobs:
47
47
  uses: codecov/codecov-action@v4
48
48
  env:
49
49
  CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
50
-
@@ -1 +1 @@
1
- # pnpm lint-staged
1
+ pnpm lint-staged
@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
17
17
  Examples of behavior that contributes to a positive environment for our
18
18
  community include:
19
19
 
20
- * Demonstrating empathy and kindness toward other people
21
- * Being respectful of differing opinions, viewpoints, and experiences
22
- * Giving and gracefully accepting constructive feedback
23
- * Accepting responsibility and apologizing to those affected by our mistakes,
20
+ - Demonstrating empathy and kindness toward other people
21
+ - Being respectful of differing opinions, viewpoints, and experiences
22
+ - Giving and gracefully accepting constructive feedback
23
+ - Accepting responsibility and apologizing to those affected by our mistakes,
24
24
  and learning from the experience
25
- * Focusing on what is best not just for us as individuals, but for the
25
+ - Focusing on what is best not just for us as individuals, but for the
26
26
  overall community
27
27
 
28
28
  Examples of unacceptable behavior include:
29
29
 
30
- * The use of sexualized language or imagery, and sexual attention or
30
+ - The use of sexualized language or imagery, and sexual attention or
31
31
  advances of any kind
32
- * Trolling, insulting or derogatory comments, and personal or political attacks
33
- * Public or private harassment
34
- * Publishing others' private information, such as a physical or email
32
+ - Trolling, insulting or derogatory comments, and personal or political attacks
33
+ - Public or private harassment
34
+ - Publishing others' private information, such as a physical or email
35
35
  address, without their explicit permission
36
- * Other conduct which could reasonably be considered inappropriate in a
36
+ - Other conduct which could reasonably be considered inappropriate in a
37
37
  professional setting
38
38
 
39
39
  ## Enforcement Responsibilities
@@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban.
106
106
  ### 4. Permanent Ban
107
107
 
108
108
  **Community Impact**: Demonstrating a pattern of violation of community
109
- standards, including sustained inappropriate behavior, harassment of an
109
+ standards, including sustained inappropriate behavior, harassment of an
110
110
  individual, or aggression toward or disparagement of classes of individuals.
111
111
 
112
112
  **Consequence**: A permanent ban from any sort of public interaction within
@@ -1 +0,0 @@
1
-
@@ -2,5 +2,5 @@ import type { UserConfig } from '@commitlint/types'
2
2
  // import { RuleConfigSeverity } from '@commitlint/types'
3
3
 
4
4
  export default <UserConfig>{
5
- extends: ['@commitlint/config-conventional']
5
+ extends: ['@commitlint/config-conventional'],
6
6
  }
@@ -1,3 +1,3 @@
1
1
  packages:
2
- - "apps/*"
3
- - "packages/*"
2
+ - 'apps/*'
3
+ - 'packages/*'
package/dist/cli.cjs CHANGED
@@ -331,10 +331,10 @@ async function main() {
331
331
  const deps = (0, import_get_value.default)(sourcePkgJson, "dependencies", { default: {} });
332
332
  const devDeps = (0, import_get_value.default)(sourcePkgJson, "devDependencies", { default: {} });
333
333
  Object.entries(deps).forEach((x) => {
334
- (0, import_set_value.default)(targetPkgJson, x[0], x[1]);
334
+ (0, import_set_value.default)(targetPkgJson, `dependencies.${x[0]}`, x[1]);
335
335
  });
336
336
  Object.entries(devDeps).forEach((x) => {
337
- (0, import_set_value.default)(targetPkgJson, x[0], x[1]);
337
+ (0, import_set_value.default)(targetPkgJson, `devDependencies.${x[0]}`, x[1]);
338
338
  });
339
339
  await import_fs_extra.default.writeJson(targetPath, targetPkgJson, {
340
340
  spaces: 2
package/dist/cli.js CHANGED
@@ -297,10 +297,10 @@ async function main() {
297
297
  const deps = (0, import_get_value.default)(sourcePkgJson, "dependencies", { default: {} });
298
298
  const devDeps = (0, import_get_value.default)(sourcePkgJson, "devDependencies", { default: {} });
299
299
  Object.entries(deps).forEach((x) => {
300
- (0, import_set_value.default)(targetPkgJson, x[0], x[1]);
300
+ (0, import_set_value.default)(targetPkgJson, `dependencies.${x[0]}`, x[1]);
301
301
  });
302
302
  Object.entries(devDeps).forEach((x) => {
303
- (0, import_set_value.default)(targetPkgJson, x[0], x[1]);
303
+ (0, import_set_value.default)(targetPkgJson, `devDependencies.${x[0]}`, x[1]);
304
304
  });
305
305
  await fs.writeJson(targetPath, targetPkgJson, {
306
306
  spaces: 2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@icebreakers/monorepo",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.3",
5
5
  "description": "my monorepo config copyer",
6
6
  "author": "",
7
7
  "license": "MIT",