Skip to content

Commit

Permalink
re-generate commons
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Dec 20, 2024
1 parent e2d39d3 commit 05e1cdd
Show file tree
Hide file tree
Showing 6 changed files with 485 additions and 37 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-github-pages-from-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@ jobs:
node-version: 20

- name: Install dependencies
run: npm --prefix website install
run: cd website && npm ci

- name: Build the Docusaurus site
env:
DOCUSAURUS_BASEURL: '/xpm-preview/'
run: npm --prefix website run build
DOCUSAURUS_BASEURL: '/xpm/'
run: cd website && npm run build

- name: Setup Pages
# https://github.com/actions/configure-pages
Expand Down
14 changes: 11 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ build/Release
# Dependency directories
node_modules
jspm_packages
xpacks/

# TypeScript v1 declaration files
typings/
Expand Down Expand Up @@ -61,15 +62,22 @@ typings/

# ---

/cjs/
cjs/
**/*.js.map
**/*.d.ts
**/*.d.ts.map

/docs/
# /docs/

tsconfig.tsbuildinfo

/tmp/
tmp/

.vscode/c_cpp_properties.json

build*/

Thumbs.db
.DS_Store

#end
51 changes: 32 additions & 19 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,29 +26,36 @@
# -----------------------------------------------------------------------------
# .gitignore is not automatically included, add relevant lines again.

.DS_Store
.git/
.github/
.gitignore
.gitmodules
.clang-*
.cmake-format

# npm
# npm pack archives
/*.tgz

# tap
/coverage/
/tests/
coverage/
tests/
.tap/

# nyc test coverage
/.nyc_output/
.nyc_output/

# VS Code
/.vscode/
.vscode/

# CI
/.github/
/.travis.yml
/.appveyor.yml
.travis.yml
.appveyor.yml

README-*.md

/src/
**/tsconfig*.json
LICENSE-*
!LICENSE-XPACK
CONTRIBUTING**

*.ts
lib/**/*.ts
Expand All @@ -57,15 +64,21 @@ lib/**/*.ts
!*.d.ts
!lib/*.d.ts

**/tsconfig*.json
typedoc.json
tsconfig.tsbuildinfo

/tests/

typedoc.json
/docs/
/assets/
/scripts/
/website/
/tmp/
src/
xpacks/
node_modules/
docs/
# /assets/ # keep it, xpm needs it.
scripts/
website/
tmp/
patches/
pkgconfig/
ci/
example*/

#end
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# xpm-preview
# xpm

Web site for the xpm web; (preview for now, to be renamed as xpm)
Website for the xpm project.
Loading

0 comments on commit 05e1cdd

Please sign in to comment.