@dword-design/base 16.0.10 → 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.
- package/dist/get-generated-files/github-codespaces.d.ts +1 -0
- package/dist/get-generated-files/github-codespaces.js +2 -1
- package/dist/get-generated-files/index.d.ts +1 -4
- package/dist/get-generated-files/index.js +1 -5
- package/package.json +1 -1
- package/dist/get-generated-files/github-codespaces-postcreate.d.ts +0 -2
- package/dist/get-generated-files/github-codespaces-postcreate.js +0 -12
|
@@ -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,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
|
-
`;
|