Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added lerna tasks for TS processing #491

Merged
merged 1 commit into from
Jul 4, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 7 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,10 @@
"description": "BEAT☆MUSIC☆SEQUENCE, a web-based music game of the future",
"main": "index.js",
"private": true,
"workspaces": [
"website",
"packages/*"
],
"browserslist": [
">0.25%",
"not ie 11",
"not op_mini all"
],
"workspaces": ["website", "packages/*"],
"browserslist": [">0.25%", "not ie 11", "not op_mini all"],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "gulp build",
"build:netlify": "./bin/netlify-build",
"pre-deploy": "gulp pre-deploy",
Expand All @@ -22,7 +16,10 @@
"ci:code-review": "npm run code-review; ./bin/upload-code-review",
"code-review": "gulp code-review",
"lint": "gulp lint",
"postbootstrap": "lerna run prepare",
"postinstall": "npm run prepare",
"pre-commit": "gulp pre-commit",
"prepare": "lerna run prepare",
"prod-build": "cross-env NODE_ENV=production gulp build",
"prod-start": "cross-env NODE_ENV=production HOT=true gulp server",
"start": "cross-env HOT=true gulp server",
Expand All @@ -41,9 +38,7 @@
"type": "git",
"url": "https://github.com/spacetme/bemuse.git"
},
"keywords": [
"bms"
],
"keywords": ["bms"],
"author": "Thai Pangsakulyanont <dtinth@spacet.me> (http://dt.in.th/)",
"license": "AGPL-1.0",
"bugs": {
Expand Down