mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-26 17:30:52 +01:00
fix runner compile step
This commit is contained in:
parent
cf1efc883a
commit
7165eaa867
@ -2,7 +2,7 @@ image: node:15.6
|
|||||||
|
|
||||||
stages:
|
stages:
|
||||||
- test
|
- test
|
||||||
- build
|
- compile
|
||||||
|
|
||||||
|
|
||||||
ESLinter:
|
ESLinter:
|
||||||
@ -15,16 +15,12 @@ ESLinter:
|
|||||||
paths:
|
paths:
|
||||||
- node_modules
|
- node_modules
|
||||||
|
|
||||||
# Build Nitro:
|
Compile:
|
||||||
# stage: build
|
stage: compile
|
||||||
# script:
|
script:
|
||||||
# - npm i
|
- npm i
|
||||||
# - npm run build-prod
|
- npm run compile
|
||||||
# cache:
|
cache:
|
||||||
# key: ${CI_COMMIT_BRANCH}
|
key: ${CI_COMMIT_BRANCH}
|
||||||
# paths:
|
paths:
|
||||||
# - node_modules
|
- node_modules
|
||||||
# artifacts:
|
|
||||||
# expire_in: 2 weeks
|
|
||||||
# paths:
|
|
||||||
# - dist/*
|
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
{
|
{
|
||||||
"name": "nitro-renderer",
|
"name": "nitro-renderer",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
|
"scripts": {
|
||||||
|
"compile": "tsc --project ./tsconfig.json",
|
||||||
|
"eslint": "eslint ./src --fix"
|
||||||
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pixi/filter-adjustment": "^4.1.3",
|
"@pixi/filter-adjustment": "^4.1.3",
|
||||||
|
@ -9,18 +9,27 @@
|
|||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"importHelpers": true,
|
"importHelpers": true,
|
||||||
|
"isolatedModules": true,
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
|
"downlevelIteration": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"target": "es2015",
|
"allowJs": true,
|
||||||
"module": "es6",
|
"skipLibCheck": true,
|
||||||
|
"noEmit": true,
|
||||||
|
"target": "es5",
|
||||||
"lib": [
|
"lib": [
|
||||||
"es2018",
|
"dom",
|
||||||
"dom"
|
"dom.iterable",
|
||||||
|
"esnext"
|
||||||
],
|
],
|
||||||
|
"module": "esnext",
|
||||||
"paths": {
|
"paths": {
|
||||||
"mini-signals": [
|
"mini-signals": [
|
||||||
"node_modules/resource-loader/typings/mini-signals.d.ts"
|
"node_modules/mini-signals/index.js"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
|
"include": [
|
||||||
|
"src"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user