Skip to content

Commit

Permalink
chore(repo): Moved renovate config and updated package scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Jun 26, 2023
1 parent 937b163 commit d7751ce
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .gitattributes
Expand Up @@ -3,7 +3,7 @@
###############################

# Set default behavior to automatically normalize line endings.
* text=auto
* text=auto eol=lf

# Force batch scripts to always use CRLF line endings so that if a repo is accessed
# in Windows via a file share from Linux, the scripts will work.
Expand Down Expand Up @@ -40,4 +40,4 @@
*.woff2 filter=lfs diff=lfs merge=lfs -text

# Other
*.exe filter=lfs diff=lfs merge=lfs -text
*.exe filter=lfs diff=lfs merge=lfs -text
File renamed without changes.
20 changes: 10 additions & 10 deletions package.json
Expand Up @@ -39,18 +39,18 @@
"clean:tools": "rimraf dist/tools",
"clean": "rimraf dist",
"restore": "nx g @nx-dotnet/core:restore",
"build:tools-executors-typescript": "cross-env FORCE_COLOR=1 npx nx run tools-executors-typescript:build:client-api-sync && npx nx run tools-executors-typescript:build:design-tokens-clean && npx nx run tools-executors-typescript:build:design-tokens-build",
"build:tools-generators-typescript": "cross-env FORCE_COLOR=1 npx nx run tools-generators-typescript:build:client-api",
"build:tools-executors-dotnet": "cross-env FORCE_COLOR=1 npx nx run tools-executors-dotnet:build:async-api-sync && npx nx run tools-executors-dotnet:build:server-api-sync && npx nx run tools-executors-dotnet:build:build",
"build:tools-generators-dotnet": "cross-env FORCE_COLOR=1 npx nx run tools-generators-dotnet:build:async-api && npx nx run tools-generators-dotnet:build:server-api && npx nx run tools-generators-dotnet:build:restore",
"build:tools-executors-docs": "cross-env FORCE_COLOR=1 npx nx run tools-executors-docs:build:design-tokens-docgen",
"build:tools-typescript": "cross-env FORCE_COLOR=1 npm run build:tools-executors-typescript && npm run build:tools-generators-typescript",
"build:tools-dotnet": "cross-env FORCE_COLOR=1 npm run build:tools-executors-dotnet && npm run build:tools-generators-dotnet",
"build:tools-executors-typescript": "npx nx run tools-executors-typescript:build:client-api-sync && npx nx run tools-executors-typescript:build:design-tokens-clean && npx nx run tools-executors-typescript:build:design-tokens-build",
"build:tools-generators-typescript": "npx nx run tools-generators-typescript:build:client-api",
"build:tools-executors-dotnet": "npx nx run tools-executors-dotnet:build:async-api-sync && npx nx run tools-executors-dotnet:build:server-api-sync && npx nx run tools-executors-dotnet:build:build",
"build:tools-generators-dotnet": "npx nx run tools-generators-dotnet:build:async-api && npx nx run tools-generators-dotnet:build:server-api && npx nx run tools-generators-dotnet:build:restore",
"build:tools-executors-docs": "npx nx run tools-executors-docs:build:design-tokens-docgen",
"build:tools-typescript": "npm run build:tools-executors-typescript && npm run build:tools-generators-typescript",
"build:tools-dotnet": "npm run build:tools-executors-dotnet && npm run build:tools-generators-dotnet",
"build:tools": "cross-env FORCE_COLOR=1 npm run build:tools-typescript && npm run build:tools-dotnet && npm run build:tools-executors-docs",
"build:tools-ci": "cross-env FORCE_COLOR=1 npx nx run tools-executors-typescript:build:design-tokens-build && npx nx run design-system-tokens:build:open-system",
"build:web-deploy": "cross-env FORCE_COLOR=1 npm run build:tools-ci && npx nx run web-shell:build:production",
"build:tools-ci": "npx nx run tools-executors-typescript:build:design-tokens-build && npx nx run design-system-tokens:build:open-system",
"build:web-deploy": "npm run build:tools-ci && npx nx run web-shell:build:production",
"build:storybook": "cross-env FORCE_COLOR=1 storybook build -s public",
"build": "cross-env FORCE_COLOR=1 nx run-many -t build --all --parallel 4",
"build": "nx run-many -t build --all --parallel 4",
"lint:spellcheck": "cross-env FORCE_COLOR=1 cspell --no-progress --relative --dot --gitignore",
"lint:language": "cross-env FORCE_COLOR=1 alex .",
"lint:js": "cross-env FORCE_COLOR=1 eslint --cache --report-unused-disable-directives \"**/*.{js,jsx,ts,tsx}\"",
Expand Down
2 changes: 1 addition & 1 deletion prettier.config.js
Expand Up @@ -10,6 +10,6 @@ module.exports = {
printWidth: 80,
bracketSpacing: true,
arrowParens: "avoid",
endOfLine: "crlf",
endOfLine: "lf",
insertFinalNewline: false,
};

0 comments on commit d7751ce

Please sign in to comment.