Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
concefly committed Aug 24, 2023
0 parents commit f7ee60b
Show file tree
Hide file tree
Showing 93 changed files with 8,220 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ci

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 14.x ]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run ci
run: npm ci
109 changes: 109 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

.DS_Store
.npmrc

.env
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 120,
"bracketSpacing": true,
"arrowParens": "avoid"
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
![workflow](https://github.com/AwesomeXR/xr-impl-bjs/actions/workflows/ci.yml/badge.svg)
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "xr-impl-bjs",
"version": "1.0.26",
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"scripts": {
"ci": "prettier --check src && tsc -p tsconfig.json --noEmit",
"build": "tsc -p tsconfig.build.json -outDir dist",
"release": "npm run ci && npm run build && release-it"
},
"devDependencies": {
"@babylonjs/gui": "^6.8.0",
"@types/howler": "^2.2.7",
"xr-core": "^1.0.24",
"apng-js": "^1.1.1",
"recast-detour": "^1.6.2",
"prettier": "^3.0.2",
"typescript": "^5.1.6",
"release-it": "^16.1.5"
},
"peerDependencies": {
"xr-core": "^1.0.23"
},
"dependencies": {
"@babylonjs/core": "^6.8.0",
"@babylonjs/inspector": "^6.8.0",
"@babylonjs/loaders": "^6.8.0",
"@babylonjs/materials": "^6.8.0",
"ah-event-bus": "^4.0.14",
"ah-flow-node": "^2.1.1",
"ah-logger": "^3.2.8",
"ah-memory-fs": "^1.0.17",
"babylonjs-ktx2decoder": "^6.8.0"
}
}
Loading

0 comments on commit f7ee60b

Please sign in to comment.