-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: '20:00' | ||
open-pull-requests-limit: 10 | ||
- package-ecosystem: bundler | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: '20:00' | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lts/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name": "polaris-documenation-site", | ||
"version": "0.1", | ||
"description": "Documentation site that uses Docsy theme for technical documentation.", | ||
"repository": "github:orppst/guide/", | ||
"homepage": "https://orppst.github.io/guide", | ||
"author": "Polaris Authors", | ||
"license": "Apache-2.0", | ||
"bugs": "https://github.com/orppst/guide/issues", | ||
"spelling": "cSpell:ignore HTMLTEST precheck postbuild -", | ||
"scripts": { | ||
"_build": "npm run _hugo-dev", | ||
"_check:links": "echo IMPLEMENTATION PENDING for check-links; echo", | ||
"_hugo": "hugo --cleanDestinationDir", | ||
"_hugo-dev": "npm run _hugo -- -e dev -DFE", | ||
"_serve": "npm run _hugo-dev -- --minify serve", | ||
"build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"", | ||
"build:production": "npm run _hugo -- --minify", | ||
"build": "npm run _build", | ||
"check:links:all": "HTMLTEST_ARGS= npm run _check:links", | ||
"check:links": "npm run _check:links", | ||
"clean": "rm -Rf public/* resources", | ||
"make:public": "git init -b main public", | ||
"precheck:links:all": "npm run build", | ||
"precheck:links": "npm run build", | ||
"postbuild:preview": "npm run _check:links", | ||
"postbuild:production": "npm run _check:links", | ||
"serve": "npm run _serve", | ||
"test": "npm run check:links", | ||
"update:pkg:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest", | ||
"update:pkg:hugo": "npm install --save-dev --save-exact hugo-extended@latest" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer": "^10.4.14", | ||
"hugo-extended": "0.113.0", | ||
"postcss-cli": "^10.1.0" | ||
} | ||
} |