Skip to content

Commit

Permalink
fixup! fixup! fixup! fixup! refactor(scripts): make just.config.ts pa…
Browse files Browse the repository at this point in the history
…rt of /tasks and rename it to index
  • Loading branch information
Hotell committed Nov 30, 2022
1 parent dec5f5c commit 3173ee4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"bundlesizecollect": "node ./scripts/generators/bundle-size-collect",
"change": "beachball change --no-commit",
"check:change": "beachball check",
"check:modified-files": "yarn workspace @fluentui/scripts just check-for-modified-files",
"check:modified-files": "node -r ./scripts/ts-node-register ./scripts/executors/check-for-modified-files",
"check:affected-package": "node ./scripts/monorepo/checkIfPackagesAffected.js",
"check:installed-dependencies-versions": "satisfied --skip-invalid --ignore \"prettier|angular|lit|sass|@storybook/html|@storybook/mdx2-csf|svelte|@testing-library|vue|@cypress/react|cypress|@swc/wasm|@cactuslab/usepubsub\"",
"clean": "lage clean --verbose",
Expand All @@ -33,7 +33,7 @@
"create-package": "plop --plopfile ./scripts/generators/create-package/index.ts --dest . --require ./scripts/ts-node-register",
"e2e": "lage e2e --verbose --concurrency=1",
"format": "node scripts/executors/format.js",
"generate-version-files": "yarn workspace @fluentui/scripts just generate-version-files",
"generate-version-files": "node -r ./scripts/ts-node-register ./scripts/generators/generate-version-files",
"graph": "node ./scripts/dependency-graph-generator/index.js",
"lint": "lage lint --verbose",
"lint:log": "FORCE_COLOR=0 yarn lint > lint.log 2>&1",
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { spawnSync } from 'child_process';
import * as path from 'path';
import * as fs from 'fs-extra';
import * as glob from 'glob';
import { findGitRoot } from '../monorepo/index';
import { findGitRoot } from '../monorepo';

const generateOnly = process.argv.includes('-g');
const beachballBin = require.resolve('beachball/bin/beachball.js');
Expand Down
4 changes: 0 additions & 4 deletions scripts/tasks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ import { apiExtractor } from './api-extractor';
import { lintImports } from './lint-imports';
import { prettier } from './prettier';
import { screener } from './screener';
import { checkForModifiedFiles } from './check-for-modified-files';
import { generateVersionFiles } from './generate-version-files';
import { postprocessTask } from './postprocess';
import { postprocessAmdTask } from './postprocess-amd';
import { startStorybookTask, buildStorybookTask } from './storybook';
Expand Down Expand Up @@ -65,8 +63,6 @@ export function preset() {
task('api-extractor', apiExtractor());
task('lint-imports', lintImports);
task('prettier', prettier);
task('check-for-modified-files', checkForModifiedFiles);
task('generate-version-files', generateVersionFiles);
task('storybook:start', startStorybookTask());
task('storybook:build', buildStorybookTask());
task('babel:postprocess', babel);
Expand Down

0 comments on commit 3173ee4

Please sign in to comment.