This commit is contained in:
Brennan 2021-10-26 10:04:29 -07:00 коммит произвёл GitHub
Родитель 09f37fea89
Коммит 7718950dfe
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -9,7 +9,7 @@
<PackageJson>$(MSBuildProjectDirectory)\package.json</PackageJson>
<BaseIntermediateOutputPath Condition="'$(BaseIntermediateOutputPath)' == ''">$(MSBuildProjectDirectory)\obj\</BaseIntermediateOutputPath>
<IntermediateOutputPath>$([MSBuild]::NormalizeDirectory('$(BaseIntermediateOutputPath)'))$(Configuration)\</IntermediateOutputPath>
<InstallArgs Condition="'$(ContinuousIntegrationBuild)' == 'true'">--frozen-lockfile</InstallArgs>
<InstallArgs>--frozen-lockfile</InstallArgs>
<_BackupPackageJson>$(IntermediateOutputPath)$(MSBuildProjectName).package.json.bak</_BackupPackageJson>
<BuildDependsOn>
PrepareForBuild;

Просмотреть файл

@ -9,9 +9,9 @@
"MonoPlatform.*"
],
"scripts": {
"preclean": "yarn install --mutex network",
"preclean": "yarn install --mutex network --frozen-lockfile",
"clean": "node node_modules/rimraf/bin.js ./dist/Debug ./dist/Release",
"prebuild": "yarn run clean && yarn install --mutex network",
"prebuild": "yarn run clean && yarn install --mutex network --frozen-lockfile",
"build": "yarn run build:debug && yarn run build:production",
"build:debug": "cd src && node ../node_modules/webpack-cli/bin/cli.js --mode development --config ./webpack.config.js",
"build:production": "cd src && node ../node_modules/webpack-cli/bin/cli.js --mode production --config ./webpack.config.js",

Просмотреть файл

@ -39,7 +39,7 @@
"scripts": {
"preclean": "cd .. && yarn run build",
"clean": "node ../common/node_modules/rimraf/bin.js ./wwwroot/dist ./obj/js",
"prebuild": "yarn run clean && yarn install --mutex network",
"prebuild": "yarn run clean && yarn install --mutex network --frozen-lockfile",
"build": "yarn run build:inner",
"build:inner": "yarn run build:lint && yarn run build:webpack",
"build:lint": "node ../common/node_modules/eslint/bin/eslint . --ext .ts --resolve-plugins-relative-to ../common",

Просмотреть файл

@ -13,9 +13,9 @@
},
"sideEffects": false,
"scripts": {
"preclean": "cd ../common && yarn install --mutex network",
"preclean": "cd ../common && yarn install --mutex network --frozen-lockfile",
"clean": "node ../common/node_modules/rimraf/bin.js ./dist",
"prebuild": "yarn run clean && yarn install --mutex network",
"prebuild": "yarn run clean && yarn install --mutex network --frozen-lockfile",
"build": "yarn run build:lint && yarn run build:esm && yarn run build:cjs && yarn run build:browser && yarn run build:uglify",
"build:lint": "node ../common/node_modules/eslint/bin/eslint ./src --ext .ts --resolve-plugins-relative-to ../common",
"build:esm": "node ../common/node_modules/typescript/bin/tsc --project ./tsconfig.json --module es2015 --outDir ./dist/esm -d",

Просмотреть файл

@ -13,9 +13,9 @@
},
"sideEffects": false,
"scripts": {
"preclean": "cd ../common && yarn install --mutex network",
"preclean": "cd ../common && yarn install --mutex network --frozen-lockfile",
"clean": "node ../common/node_modules/rimraf/bin.js ./dist",
"prebuild": "yarn run clean && yarn install --mutex network",
"prebuild": "yarn run clean && yarn install --mutex network --frozen-lockfile",
"build": "yarn run build:lint && yarn run build:esm && yarn run build:cjs && yarn run build:browser && yarn run build:webworker && yarn run build:uglify",
"build:lint": "node ../common/node_modules/eslint/bin/eslint ./src --ext .ts --resolve-plugins-relative-to ../common",
"build:esm": "node ../common/node_modules/typescript/bin/tsc --project ./tsconfig.json --module es2015 --outDir ./dist/esm -d && node ./build/process-dts.js",