-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: Add auto-format command using Prettier
- Loading branch information
1 parent
9b82b3a
commit 48a2381
Showing
115 changed files
with
1,695 additions
and
1,132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
import * as tasks from './tasks'; | ||
import { createBuilder } from './util'; | ||
|
||
|
||
export default createBuilder([ | ||
[ 'Removing "./dist" Folder', tasks.removeDistFolder ], | ||
[ 'Compiling packages with NGC', tasks.compilePackagesWithNgc ], | ||
[ 'Bundling FESMs', tasks.bundleFesms ], | ||
[ 'Down-leveling FESMs to ES5', tasks.downLevelFesmsToES5 ], | ||
[ 'Creating UMD Bundles', tasks.createUmdBundles ], | ||
[ 'Renaming package entry files', tasks.renamePackageEntryFiles ], | ||
[ 'Cleaning TypeScript files', tasks.cleanTypeScriptFiles ], | ||
[ 'Removing remaining sourcemap files', tasks.removeRemainingSourceMapFiles ], | ||
[ 'Copying type definition files', tasks.copyTypeDefinitionFiles ], | ||
[ 'Minifying UMD bundles', tasks.minifyUmdBundles ], | ||
[ 'Copying documents', tasks.copyDocs ], | ||
[ 'Copying package.json files', tasks.copyPackageJsonFiles ], | ||
[ 'Removing "./dist/packages" Folder', tasks.removePackagesFolder ], | ||
['Removing "./dist" Folder', tasks.removeDistFolder], | ||
['Compiling packages with NGC', tasks.compilePackagesWithNgc], | ||
['Bundling FESMs', tasks.bundleFesms], | ||
['Down-leveling FESMs to ES5', tasks.downLevelFesmsToES5], | ||
['Creating UMD Bundles', tasks.createUmdBundles], | ||
['Renaming package entry files', tasks.renamePackageEntryFiles], | ||
['Cleaning TypeScript files', tasks.cleanTypeScriptFiles], | ||
['Removing remaining sourcemap files', tasks.removeRemainingSourceMapFiles], | ||
['Copying type definition files', tasks.copyTypeDefinitionFiles], | ||
['Minifying UMD bundles', tasks.minifyUmdBundles], | ||
['Copying documents', tasks.copyDocs], | ||
['Copying package.json files', tasks.copyPackageJsonFiles], | ||
['Removing "./dist/packages" Folder', tasks.removePackagesFolder], | ||
]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.