mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-04 12:25:19 -04:00
Create builder folder for docker + bootstrap combo
This commit is contained in:
parent
f663254051
commit
2166833f11
@ -2,6 +2,4 @@
|
||||
*
|
||||
|
||||
# Files required for the action
|
||||
!entrypoint.sh
|
||||
!action.yml
|
||||
!default-build-script
|
||||
!builder/
|
||||
|
@ -1,2 +1,2 @@
|
||||
**/node_modules/**
|
||||
**/dist/**
|
||||
**/builder/**
|
||||
|
@ -34,4 +34,4 @@ branding:
|
||||
color: 'gray-dark'
|
||||
runs:
|
||||
using: 'node12'
|
||||
main: 'dist/index.js'
|
||||
main: 'builder/index.js'
|
||||
|
@ -1,13 +1,13 @@
|
||||
{
|
||||
"name": "unity-builder",
|
||||
"version": "0.2.0",
|
||||
"version": "0.5.0",
|
||||
"description": "Build Unity projects for different platforms.",
|
||||
"main": "src/index.js",
|
||||
"main": "builder/index.js",
|
||||
"repository": "git@github.com:webbertakken/unity-builder.git",
|
||||
"author": "Webber <webber@takken.io>",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "ncc build --out dist --minify",
|
||||
"build": "ncc build src --out builder --minify",
|
||||
"lint": "prettier --check \"src/**/*.js\" && eslint src",
|
||||
"test": "jest"
|
||||
},
|
||||
@ -39,7 +39,7 @@
|
||||
},
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged && yarn build && git add dist"
|
||||
"pre-commit": "lint-staged && yarn build && git add builder/index.js"
|
||||
}
|
||||
},
|
||||
"lint-staged": {
|
||||
|
Loading…
Reference in New Issue
Block a user