@dword-design/base 16.0.9 → 16.1.0

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.
@@ -1 +1 @@
1
- export default [".commitlintrc.json", ".cz.json", ".devcontainer", ".editorconfig", "eslint.config.ts", "eslint.lint-staged.config.ts", ".gitattributes", ".github", ".gitignore", ".gitpod.Dockerfile", ".gitpod.yml", ".husky", ".npmrc", ".nyc_output", ".releaserc.json", ".renovaterc.json", ".vscode", "CHANGELOG.md", "codecov", "codecov.SHA256SUM", "codecov.SHA256SUM.sig", "coverage", "LICENSE.md", "node_modules", "pnpm-lock.yaml"];
1
+ export default [".commitlintrc.json", ".cz.json", ".devcontainer", ".editorconfig", "eslint.config.ts", "eslint.lint-staged.config.ts", ".gitattributes", ".github", ".gitignore", ".gitpod.Dockerfile", ".gitpod.yml", ".husky", ".npmrc", ".pnpm-store", ".releaserc.json", ".renovaterc.json", ".vscode", "CHANGELOG.md", "codecov", "codecov.SHA256SUM", "codecov.SHA256SUM.sig", "coverage", "LICENSE.md", "node_modules", "pnpm-lock.yaml"];
@@ -2,5 +2,5 @@ import { identity, sortBy } from "lodash-es";
2
2
  export default function () {
3
3
  return sortBy([".DS_Store", "/.pnpm-store",
4
4
  // https://github.com/orgs/pnpm/discussions/6936#discussioncomment-6746063
5
- "/.env.json", "/.test.env.json", "/.nyc_output", "/codecov", "/codecov.SHA256SUM", "/codecov.SHA256SUM.sig", "/coverage", "/node_modules", "/test-results", ...this.config.gitignore], identity);
5
+ "/.env.json", "/.test.env.json", "/codecov", "/codecov.SHA256SUM", "/codecov.SHA256SUM.sig", "/coverage", "/node_modules", "/test-results", ...this.config.gitignore], identity);
6
6
  }
@@ -1,4 +1,5 @@
1
1
  declare const _default: {
2
+ image: string;
2
3
  postCreateCommand: string;
3
4
  };
4
5
  export default _default;
@@ -1,3 +1,4 @@
1
1
  export default {
2
- postCreateCommand: "bash .devcontainer/postcreate.sh"
2
+ image: "dworddesign/devcontainer",
3
+ postCreateCommand: "pnpm install --frozen-lockfile"
3
4
  };
@@ -1,10 +1,7 @@
1
1
  export default function (): {
2
2
  '.commitlintrc.json': string;
3
3
  '.cz.json': string;
4
- '.devcontainer': {
5
- 'devcontainer.json': string;
6
- 'postcreate.sh': string;
7
- };
4
+ '.devcontainer/devcontainer.json': string;
8
5
  '.editorconfig': string;
9
6
  '.gitattributes': string;
10
7
  '.github/DEPRECATED_DEPENDENCIES_ISSUE_TEMPLATE.md': string;
@@ -8,7 +8,6 @@ import editorconfigConfig from "./editorconfig.js";
8
8
  import eslintLintStaged from "./eslint-lint-staged.js";
9
9
  import gitattributesConfig from "./gitattributes.js";
10
10
  import githubCodespacesConfig from "./github-codespaces.js";
11
- import githubCodespacesPostcreate from "./github-codespaces-postcreate.js";
12
11
  import githubDeprecatedDependenciesConfig from "./github-deprecated-dependencies/index.js";
13
12
  import deprecatedDependenciesIssueTemplate from "./github-deprecated-dependencies-issue-template.js";
14
13
  import githubFunding from "./github-funding.js";
@@ -22,11 +21,8 @@ export default function () {
22
21
  `,
23
22
  ".cz.json": `${JSON.stringify(commitizenConfig, void 0, 2)}
24
23
  `,
25
- ".devcontainer": {
26
- "devcontainer.json": `${JSON.stringify(githubCodespacesConfig, void 0, 2)}
24
+ ".devcontainer/devcontainer.json": `${JSON.stringify(githubCodespacesConfig, void 0, 2)}
27
25
  `,
28
- "postcreate.sh": githubCodespacesPostcreate
29
- },
30
26
  ".editorconfig": editorconfigConfig,
31
27
  ".gitattributes": gitattributesConfig,
32
28
  ".github/DEPRECATED_DEPENDENCIES_ISSUE_TEMPLATE.md": deprecatedDependenciesIssueTemplate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dword-design/base",
3
- "version": "16.0.9",
3
+ "version": "16.1.0",
4
4
  "description": "Base package for projects.",
5
5
  "repository": "dword-design/base",
6
6
  "funding": "https://github.com/sponsors/dword-design",
@@ -1,2 +0,0 @@
1
- declare const _default: string;
2
- export default _default;
@@ -1,12 +0,0 @@
1
- import endent from "endent";
2
- export default endent`
3
- # Doppler ######################################################
4
- # See https://docs.doppler.com/docs/install-cli#installation
5
- sudo apt-get update && sudo apt-get install -y apt-transport-https ca-certificates curl gnupg
6
- curl -sLf --retry 3 --tlsv1.2 --proto "=https" 'https://packages.doppler.com/public/cli/gpg.DE2A7741A397C129.key' | sudo gpg --dearmor -o /usr/share/keyrings/doppler-archive-keyring.gpg
7
- echo "deb [signed-by=/usr/share/keyrings/doppler-archive-keyring.gpg] https://packages.doppler.com/public/cli/deb/debian any-version main" | sudo tee /etc/apt/sources.list.d/doppler-cli.list
8
- sudo apt-get update && sudo apt-get install doppler
9
- # ##############################################################
10
-
11
- pnpm install --frozen-lockfile\n
12
- `;