Skip to content

Commit

Permalink
Migrate to workspaces (#187)
Browse files Browse the repository at this point in the history
  • Loading branch information
benallfree authored Jan 13, 2022
1 parent b8c7a8b commit 99a8b32
Show file tree
Hide file tree
Showing 281 changed files with 35,596 additions and 96 deletions.
11 changes: 1 addition & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
node_modules
coverage
.nyc_output
.DS_Store
*.log
.idea
compiled
.awcache
dist
*.lock
debug
.DS_Store
86 changes: 5 additions & 81 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,85 +1,9 @@
{
"name": "react-babylonjs",
"version": "3.0.31",
"description": "React for Babylon.js",
"homepage": "https://brianzinn.github.io/react-babylonjs/",
"keywords": [
"3d",
"webgl",
"react",
"babylon",
"babylon.js",
"renderer",
"react-reconciler"
],
"main": "dist/react-babylonjs.js",
"module": "dist/react-babylonjs.js",
"esnext": "dist/react-babylonjs.js",
"type": "module",
"typings": "dist/react-babylonjs.d.ts",
"files": [
"dist"
],
"author": "Brian Zinn <github@wakeskate.com>",
"repository": {
"type": "git",
"url": "https://github.com/brianzinn/react-babylonjs/"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production rollup -c",
"start": "tsc-watch --onSuccess \"rollup -c\"",
"generate-code": "ts-node -P tools/tsconfig.generate.json tools/generate-code.ts",
"unit-test": "cross-env TS_NODE_PROJECT=\"test/tsconfig.json\" mocha --require ts-node/register --require esm \"test/**/*.spec.{js,jsx,ts,tsx}\"",
"test": "npm run unit-test",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary npm run test"
},
"devDependencies": {
"@babylonjs/core": "^4.2.0",
"@babylonjs/gui": "^4.2.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-replace": "^3.0.0",
"@types/lodash.camelcase": "^4.3.6",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.10",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-reconciler": "^0.26.4",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"cross-env": "^7.0.0",
"eslint": "^7.32.0",
"esm": "^3.2.25",
"github-release-notes": "0.17.2",
"lodash.camelcase": "^4.3.0",
"mocha": "8.1.3",
"nyc": "^15.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.0.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sinon": "^9.2.4",
"ts-morph": "^10.1.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.5.2"
},
"peerDependencies": {
"@babylonjs/core": "4.x||>5.0.0-alpha",
"@babylonjs/gui": "4.x||>5.0.0-alpha",
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"react-reconciler": "^0.26.2"
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
}
}
File renamed without changes.
File renamed without changes.
11 changes: 11 additions & 0 deletions packages/react-babylonjs/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node_modules
coverage
.nyc_output
.DS_Store
*.log
.idea
compiled
.awcache
dist
*.lock
debug
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
85 changes: 85 additions & 0 deletions packages/react-babylonjs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"name": "react-babylonjs",
"version": "3.0.31",
"description": "React for Babylon.js",
"homepage": "https://brianzinn.github.io/react-babylonjs/",
"keywords": [
"3d",
"webgl",
"react",
"babylon",
"babylon.js",
"renderer",
"react-reconciler"
],
"main": "dist/react-babylonjs.js",
"module": "dist/react-babylonjs.js",
"esnext": "dist/react-babylonjs.js",
"type": "module",
"typings": "dist/react-babylonjs.d.ts",
"files": [
"dist"
],
"author": "Brian Zinn <github@wakeskate.com>",
"repository": {
"type": "git",
"url": "https://github.com/brianzinn/react-babylonjs/"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production rollup -c",
"start": "tsc-watch --onSuccess \"rollup -c\"",
"generate-code": "ts-node -P tools/tsconfig.generate.json tools/generate-code.ts",
"unit-test": "cross-env TS_NODE_PROJECT=\"test/tsconfig.json\" mocha --require ts-node/register --require esm \"test/**/*.spec.{js,jsx,ts,tsx}\"",
"test": "npm run unit-test",
"test:coverage": "nyc --reporter=lcov --reporter=text-summary npm run test"
},
"devDependencies": {
"@babylonjs/core": "^4.2.0",
"@babylonjs/gui": "^4.2.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-replace": "^3.0.0",
"@types/lodash.camelcase": "^4.3.6",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.10",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-reconciler": "^0.26.4",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"cross-env": "^7.0.0",
"eslint": "^7.32.0",
"esm": "^3.2.25",
"github-release-notes": "0.17.2",
"lodash.camelcase": "^4.3.0",
"mocha": "8.1.3",
"nyc": "^15.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.0.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sinon": "^9.2.4",
"ts-morph": "^10.1.0",
"ts-node": "^9.1.1",
"tsc-watch": "^4.2.9",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.5.2"
},
"peerDependencies": {
"@babylonjs/core": "4.x||>5.0.0-alpha",
"@babylonjs/gui": "4.x||>5.0.0-alpha",
"react": ">=17",
"react-dom": ">=17"
},
"dependencies": {
"react-reconciler": "^0.26.2"
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "react-babylonjs",
"name": "react-babylonjs-codesandbox",
"version": "1.0.0",
"description": "",
"keywords": [],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 2 additions & 4 deletions static/package.json → packages/static/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "gatsby-gitbook-boilerplate",
"name": "react-babylonjs-docs",
"private": true,
"description": "Documentation, built with mdx",
"author": "Praveen <praveen@hasura.io> (@praveenweb)",
"description": "react-babylonjs Documentation",
"version": "0.0.1",
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.12.13",
Expand Down Expand Up @@ -56,7 +55,6 @@
"styled-components": "^5.3.0"
},
"license": "MIT",
"main": "n/a",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 99a8b32

Please sign in to comment.