@angular/cli 16.1.4 → 16.2.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/config/schema.json +563 -0
- package/package.json +11 -11
- package/src/utilities/version.js +1 -1
package/lib/config/schema.json
CHANGED
|
@@ -393,6 +393,7 @@
|
|
|
393
393
|
"description": "The builder used for this package.",
|
|
394
394
|
"not": {
|
|
395
395
|
"enum": [
|
|
396
|
+
"@angular-devkit/build-angular:application",
|
|
396
397
|
"@angular-devkit/build-angular:app-shell",
|
|
397
398
|
"@angular-devkit/build-angular:browser",
|
|
398
399
|
"@angular-devkit/build-angular:browser-esbuild",
|
|
@@ -426,6 +427,28 @@
|
|
|
426
427
|
"builder"
|
|
427
428
|
]
|
|
428
429
|
},
|
|
430
|
+
{
|
|
431
|
+
"type": "object",
|
|
432
|
+
"additionalProperties": false,
|
|
433
|
+
"properties": {
|
|
434
|
+
"builder": {
|
|
435
|
+
"const": "@angular-devkit/build-angular:application"
|
|
436
|
+
},
|
|
437
|
+
"defaultConfiguration": {
|
|
438
|
+
"type": "string",
|
|
439
|
+
"description": "A default named configuration to use when a target configuration is not provided."
|
|
440
|
+
},
|
|
441
|
+
"options": {
|
|
442
|
+
"$ref": "#/definitions/AngularDevkitBuildAngularBuildersApplicationSchema"
|
|
443
|
+
},
|
|
444
|
+
"configurations": {
|
|
445
|
+
"type": "object",
|
|
446
|
+
"additionalProperties": {
|
|
447
|
+
"$ref": "#/definitions/AngularDevkitBuildAngularBuildersApplicationSchema"
|
|
448
|
+
}
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
},
|
|
429
452
|
{
|
|
430
453
|
"type": "object",
|
|
431
454
|
"additionalProperties": false,
|
|
@@ -1612,6 +1635,546 @@
|
|
|
1612
1635
|
}
|
|
1613
1636
|
}
|
|
1614
1637
|
},
|
|
1638
|
+
"AngularDevkitBuildAngularBuildersApplicationSchema": {
|
|
1639
|
+
"title": "Application schema for Build Facade.",
|
|
1640
|
+
"description": "Application builder target options",
|
|
1641
|
+
"type": "object",
|
|
1642
|
+
"properties": {
|
|
1643
|
+
"assets": {
|
|
1644
|
+
"type": "array",
|
|
1645
|
+
"description": "List of static application assets.",
|
|
1646
|
+
"default": [],
|
|
1647
|
+
"items": {
|
|
1648
|
+
"$ref": "#/definitions/AngularDevkitBuildAngularBuildersApplicationSchema/definitions/assetPattern"
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
"browser": {
|
|
1652
|
+
"type": "string",
|
|
1653
|
+
"description": "The full path for the browser entry point to the application, relative to the current workspace."
|
|
1654
|
+
},
|
|
1655
|
+
"server": {
|
|
1656
|
+
"type": "string",
|
|
1657
|
+
"description": "The full path for the server entry point to the application, relative to the current workspace."
|
|
1658
|
+
},
|
|
1659
|
+
"polyfills": {
|
|
1660
|
+
"description": "Polyfills to be included in the build.",
|
|
1661
|
+
"oneOf": [
|
|
1662
|
+
{
|
|
1663
|
+
"type": "array",
|
|
1664
|
+
"description": "A list of polyfills to include in the build. Can be a full path for a file, relative to the current workspace or module specifier. Example: 'zone.js'.",
|
|
1665
|
+
"items": {
|
|
1666
|
+
"type": "string",
|
|
1667
|
+
"uniqueItems": true
|
|
1668
|
+
},
|
|
1669
|
+
"default": []
|
|
1670
|
+
},
|
|
1671
|
+
{
|
|
1672
|
+
"type": "string",
|
|
1673
|
+
"description": "The full path for the polyfills file, relative to the current workspace or a module specifier. Example: 'zone.js'."
|
|
1674
|
+
}
|
|
1675
|
+
]
|
|
1676
|
+
},
|
|
1677
|
+
"tsConfig": {
|
|
1678
|
+
"type": "string",
|
|
1679
|
+
"description": "The full path for the TypeScript configuration file, relative to the current workspace."
|
|
1680
|
+
},
|
|
1681
|
+
"scripts": {
|
|
1682
|
+
"description": "Global scripts to be included in the build.",
|
|
1683
|
+
"type": "array",
|
|
1684
|
+
"default": [],
|
|
1685
|
+
"items": {
|
|
1686
|
+
"oneOf": [
|
|
1687
|
+
{
|
|
1688
|
+
"type": "object",
|
|
1689
|
+
"properties": {
|
|
1690
|
+
"input": {
|
|
1691
|
+
"type": "string",
|
|
1692
|
+
"description": "The file to include.",
|
|
1693
|
+
"pattern": "\\.[cm]?jsx?$"
|
|
1694
|
+
},
|
|
1695
|
+
"bundleName": {
|
|
1696
|
+
"type": "string",
|
|
1697
|
+
"pattern": "^[\\w\\-.]*$",
|
|
1698
|
+
"description": "The bundle name for this extra entry point."
|
|
1699
|
+
},
|
|
1700
|
+
"inject": {
|
|
1701
|
+
"type": "boolean",
|
|
1702
|
+
"description": "If the bundle will be referenced in the HTML file.",
|
|
1703
|
+
"default": true
|
|
1704
|
+
}
|
|
1705
|
+
},
|
|
1706
|
+
"additionalProperties": false
|
|
1707
|
+
},
|
|
1708
|
+
{
|
|
1709
|
+
"type": "string",
|
|
1710
|
+
"description": "The JavaScript/TypeScript file or package containing the file to include."
|
|
1711
|
+
}
|
|
1712
|
+
]
|
|
1713
|
+
}
|
|
1714
|
+
},
|
|
1715
|
+
"styles": {
|
|
1716
|
+
"description": "Global styles to be included in the build.",
|
|
1717
|
+
"type": "array",
|
|
1718
|
+
"default": [],
|
|
1719
|
+
"items": {
|
|
1720
|
+
"oneOf": [
|
|
1721
|
+
{
|
|
1722
|
+
"type": "object",
|
|
1723
|
+
"properties": {
|
|
1724
|
+
"input": {
|
|
1725
|
+
"type": "string",
|
|
1726
|
+
"description": "The file to include.",
|
|
1727
|
+
"pattern": "\\.(?:css|scss|sass|less)$"
|
|
1728
|
+
},
|
|
1729
|
+
"bundleName": {
|
|
1730
|
+
"type": "string",
|
|
1731
|
+
"pattern": "^[\\w\\-.]*$",
|
|
1732
|
+
"description": "The bundle name for this extra entry point."
|
|
1733
|
+
},
|
|
1734
|
+
"inject": {
|
|
1735
|
+
"type": "boolean",
|
|
1736
|
+
"description": "If the bundle will be referenced in the HTML file.",
|
|
1737
|
+
"default": true
|
|
1738
|
+
}
|
|
1739
|
+
},
|
|
1740
|
+
"additionalProperties": false
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"type": "string",
|
|
1744
|
+
"description": "The file to include.",
|
|
1745
|
+
"pattern": "\\.(?:css|scss|sass|less)$"
|
|
1746
|
+
}
|
|
1747
|
+
]
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"inlineStyleLanguage": {
|
|
1751
|
+
"description": "The stylesheet language to use for the application's inline component styles.",
|
|
1752
|
+
"type": "string",
|
|
1753
|
+
"default": "css",
|
|
1754
|
+
"enum": [
|
|
1755
|
+
"css",
|
|
1756
|
+
"less",
|
|
1757
|
+
"sass",
|
|
1758
|
+
"scss"
|
|
1759
|
+
]
|
|
1760
|
+
},
|
|
1761
|
+
"stylePreprocessorOptions": {
|
|
1762
|
+
"description": "Options to pass to style preprocessors.",
|
|
1763
|
+
"type": "object",
|
|
1764
|
+
"properties": {
|
|
1765
|
+
"includePaths": {
|
|
1766
|
+
"description": "Paths to include. Paths will be resolved to workspace root.",
|
|
1767
|
+
"type": "array",
|
|
1768
|
+
"items": {
|
|
1769
|
+
"type": "string"
|
|
1770
|
+
},
|
|
1771
|
+
"default": []
|
|
1772
|
+
}
|
|
1773
|
+
},
|
|
1774
|
+
"additionalProperties": false
|
|
1775
|
+
},
|
|
1776
|
+
"externalDependencies": {
|
|
1777
|
+
"description": "Exclude the listed external dependencies from being bundled into the bundle. Instead, the created bundle relies on these dependencies to be available during runtime.",
|
|
1778
|
+
"type": "array",
|
|
1779
|
+
"items": {
|
|
1780
|
+
"type": "string"
|
|
1781
|
+
},
|
|
1782
|
+
"default": []
|
|
1783
|
+
},
|
|
1784
|
+
"optimization": {
|
|
1785
|
+
"description": "Enables optimization of the build output. Including minification of scripts and styles, tree-shaking, dead-code elimination, inlining of critical CSS and fonts inlining. For more information, see https://angular.io/guide/workspace-config#optimization-configuration.",
|
|
1786
|
+
"default": true,
|
|
1787
|
+
"oneOf": [
|
|
1788
|
+
{
|
|
1789
|
+
"type": "object",
|
|
1790
|
+
"properties": {
|
|
1791
|
+
"scripts": {
|
|
1792
|
+
"type": "boolean",
|
|
1793
|
+
"description": "Enables optimization of the scripts output.",
|
|
1794
|
+
"default": true
|
|
1795
|
+
},
|
|
1796
|
+
"styles": {
|
|
1797
|
+
"description": "Enables optimization of the styles output.",
|
|
1798
|
+
"default": true,
|
|
1799
|
+
"oneOf": [
|
|
1800
|
+
{
|
|
1801
|
+
"type": "object",
|
|
1802
|
+
"properties": {
|
|
1803
|
+
"minify": {
|
|
1804
|
+
"type": "boolean",
|
|
1805
|
+
"description": "Minify CSS definitions by removing extraneous whitespace and comments, merging identifiers and minimizing values.",
|
|
1806
|
+
"default": true
|
|
1807
|
+
},
|
|
1808
|
+
"inlineCritical": {
|
|
1809
|
+
"type": "boolean",
|
|
1810
|
+
"description": "Extract and inline critical CSS definitions to improve first paint time.",
|
|
1811
|
+
"default": true
|
|
1812
|
+
}
|
|
1813
|
+
},
|
|
1814
|
+
"additionalProperties": false
|
|
1815
|
+
},
|
|
1816
|
+
{
|
|
1817
|
+
"type": "boolean"
|
|
1818
|
+
}
|
|
1819
|
+
]
|
|
1820
|
+
},
|
|
1821
|
+
"fonts": {
|
|
1822
|
+
"description": "Enables optimization for fonts. This option requires internet access. `HTTPS_PROXY` environment variable can be used to specify a proxy server.",
|
|
1823
|
+
"default": true,
|
|
1824
|
+
"oneOf": [
|
|
1825
|
+
{
|
|
1826
|
+
"type": "object",
|
|
1827
|
+
"properties": {
|
|
1828
|
+
"inline": {
|
|
1829
|
+
"type": "boolean",
|
|
1830
|
+
"description": "Reduce render blocking requests by inlining external Google Fonts and Adobe Fonts CSS definitions in the application's HTML index file. This option requires internet access. `HTTPS_PROXY` environment variable can be used to specify a proxy server.",
|
|
1831
|
+
"default": true
|
|
1832
|
+
}
|
|
1833
|
+
},
|
|
1834
|
+
"additionalProperties": false
|
|
1835
|
+
},
|
|
1836
|
+
{
|
|
1837
|
+
"type": "boolean"
|
|
1838
|
+
}
|
|
1839
|
+
]
|
|
1840
|
+
}
|
|
1841
|
+
},
|
|
1842
|
+
"additionalProperties": false
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"type": "boolean"
|
|
1846
|
+
}
|
|
1847
|
+
]
|
|
1848
|
+
},
|
|
1849
|
+
"fileReplacements": {
|
|
1850
|
+
"description": "Replace compilation source files with other compilation source files in the build.",
|
|
1851
|
+
"type": "array",
|
|
1852
|
+
"items": {
|
|
1853
|
+
"$ref": "#/definitions/AngularDevkitBuildAngularBuildersApplicationSchema/definitions/fileReplacement"
|
|
1854
|
+
},
|
|
1855
|
+
"default": []
|
|
1856
|
+
},
|
|
1857
|
+
"outputPath": {
|
|
1858
|
+
"type": "string",
|
|
1859
|
+
"description": "The full path for the new output directory, relative to the current workspace.\nBy default, writes output to a folder named dist/ in the current project."
|
|
1860
|
+
},
|
|
1861
|
+
"aot": {
|
|
1862
|
+
"type": "boolean",
|
|
1863
|
+
"description": "Build using Ahead of Time compilation.",
|
|
1864
|
+
"default": true
|
|
1865
|
+
},
|
|
1866
|
+
"sourceMap": {
|
|
1867
|
+
"description": "Output source maps for scripts and styles. For more information, see https://angular.io/guide/workspace-config#source-map-configuration.",
|
|
1868
|
+
"default": false,
|
|
1869
|
+
"oneOf": [
|
|
1870
|
+
{
|
|
1871
|
+
"type": "object",
|
|
1872
|
+
"properties": {
|
|
1873
|
+
"scripts": {
|
|
1874
|
+
"type": "boolean",
|
|
1875
|
+
"description": "Output source maps for all scripts.",
|
|
1876
|
+
"default": true
|
|
1877
|
+
},
|
|
1878
|
+
"styles": {
|
|
1879
|
+
"type": "boolean",
|
|
1880
|
+
"description": "Output source maps for all styles.",
|
|
1881
|
+
"default": true
|
|
1882
|
+
},
|
|
1883
|
+
"hidden": {
|
|
1884
|
+
"type": "boolean",
|
|
1885
|
+
"description": "Output source maps used for error reporting tools.",
|
|
1886
|
+
"default": false
|
|
1887
|
+
},
|
|
1888
|
+
"vendor": {
|
|
1889
|
+
"type": "boolean",
|
|
1890
|
+
"description": "Resolve vendor packages source maps.",
|
|
1891
|
+
"default": false
|
|
1892
|
+
}
|
|
1893
|
+
},
|
|
1894
|
+
"additionalProperties": false
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
"type": "boolean"
|
|
1898
|
+
}
|
|
1899
|
+
]
|
|
1900
|
+
},
|
|
1901
|
+
"baseHref": {
|
|
1902
|
+
"type": "string",
|
|
1903
|
+
"description": "Base url for the application being built."
|
|
1904
|
+
},
|
|
1905
|
+
"verbose": {
|
|
1906
|
+
"type": "boolean",
|
|
1907
|
+
"description": "Adds more details to output logging.",
|
|
1908
|
+
"default": false
|
|
1909
|
+
},
|
|
1910
|
+
"progress": {
|
|
1911
|
+
"type": "boolean",
|
|
1912
|
+
"description": "Log progress to the console while building.",
|
|
1913
|
+
"default": true
|
|
1914
|
+
},
|
|
1915
|
+
"i18nMissingTranslation": {
|
|
1916
|
+
"type": "string",
|
|
1917
|
+
"description": "How to handle missing translations for i18n.",
|
|
1918
|
+
"enum": [
|
|
1919
|
+
"warning",
|
|
1920
|
+
"error",
|
|
1921
|
+
"ignore"
|
|
1922
|
+
],
|
|
1923
|
+
"default": "warning"
|
|
1924
|
+
},
|
|
1925
|
+
"i18nDuplicateTranslation": {
|
|
1926
|
+
"type": "string",
|
|
1927
|
+
"description": "How to handle duplicate translations for i18n.",
|
|
1928
|
+
"enum": [
|
|
1929
|
+
"warning",
|
|
1930
|
+
"error",
|
|
1931
|
+
"ignore"
|
|
1932
|
+
],
|
|
1933
|
+
"default": "warning"
|
|
1934
|
+
},
|
|
1935
|
+
"localize": {
|
|
1936
|
+
"description": "Translate the bundles in one or more locales.",
|
|
1937
|
+
"oneOf": [
|
|
1938
|
+
{
|
|
1939
|
+
"type": "boolean",
|
|
1940
|
+
"description": "Translate all locales."
|
|
1941
|
+
},
|
|
1942
|
+
{
|
|
1943
|
+
"type": "array",
|
|
1944
|
+
"description": "List of locales ID's to translate.",
|
|
1945
|
+
"minItems": 1,
|
|
1946
|
+
"items": {
|
|
1947
|
+
"type": "string",
|
|
1948
|
+
"pattern": "^[a-zA-Z]{2,3}(-[a-zA-Z]{4})?(-([a-zA-Z]{2}|[0-9]{3}))?(-[a-zA-Z]{5,8})?(-x(-[a-zA-Z0-9]{1,8})+)?$"
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1951
|
+
]
|
|
1952
|
+
},
|
|
1953
|
+
"watch": {
|
|
1954
|
+
"type": "boolean",
|
|
1955
|
+
"description": "Run build when files change.",
|
|
1956
|
+
"default": false
|
|
1957
|
+
},
|
|
1958
|
+
"outputHashing": {
|
|
1959
|
+
"type": "string",
|
|
1960
|
+
"description": "Define the output filename cache-busting hashing mode.",
|
|
1961
|
+
"default": "none",
|
|
1962
|
+
"enum": [
|
|
1963
|
+
"none",
|
|
1964
|
+
"all",
|
|
1965
|
+
"media",
|
|
1966
|
+
"bundles"
|
|
1967
|
+
]
|
|
1968
|
+
},
|
|
1969
|
+
"poll": {
|
|
1970
|
+
"type": "number",
|
|
1971
|
+
"description": "Enable and define the file watching poll time period in milliseconds."
|
|
1972
|
+
},
|
|
1973
|
+
"deleteOutputPath": {
|
|
1974
|
+
"type": "boolean",
|
|
1975
|
+
"description": "Delete the output path before building.",
|
|
1976
|
+
"default": true
|
|
1977
|
+
},
|
|
1978
|
+
"preserveSymlinks": {
|
|
1979
|
+
"type": "boolean",
|
|
1980
|
+
"description": "Do not use the real path when resolving modules. If unset then will default to `true` if NodeJS option --preserve-symlinks is set."
|
|
1981
|
+
},
|
|
1982
|
+
"extractLicenses": {
|
|
1983
|
+
"type": "boolean",
|
|
1984
|
+
"description": "Extract all licenses in a separate file.",
|
|
1985
|
+
"default": true
|
|
1986
|
+
},
|
|
1987
|
+
"subresourceIntegrity": {
|
|
1988
|
+
"type": "boolean",
|
|
1989
|
+
"description": "Enables the use of subresource integrity validation.",
|
|
1990
|
+
"default": false
|
|
1991
|
+
},
|
|
1992
|
+
"serviceWorker": {
|
|
1993
|
+
"description": "Generates a service worker configuration.",
|
|
1994
|
+
"default": false,
|
|
1995
|
+
"oneOf": [
|
|
1996
|
+
{
|
|
1997
|
+
"type": "string",
|
|
1998
|
+
"description": "Path to ngsw-config.json."
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"const": false,
|
|
2002
|
+
"description": "Does not generate a service worker configuration."
|
|
2003
|
+
}
|
|
2004
|
+
]
|
|
2005
|
+
},
|
|
2006
|
+
"index": {
|
|
2007
|
+
"description": "Configures the generation of the application's HTML index.",
|
|
2008
|
+
"oneOf": [
|
|
2009
|
+
{
|
|
2010
|
+
"type": "string",
|
|
2011
|
+
"description": "The path of a file to use for the application's HTML index. The filename of the specified path will be used for the generated file and will be created in the root of the application's configured output path."
|
|
2012
|
+
},
|
|
2013
|
+
{
|
|
2014
|
+
"type": "object",
|
|
2015
|
+
"description": "",
|
|
2016
|
+
"properties": {
|
|
2017
|
+
"input": {
|
|
2018
|
+
"type": "string",
|
|
2019
|
+
"minLength": 1,
|
|
2020
|
+
"description": "The path of a file to use for the application's generated HTML index."
|
|
2021
|
+
},
|
|
2022
|
+
"output": {
|
|
2023
|
+
"type": "string",
|
|
2024
|
+
"minLength": 1,
|
|
2025
|
+
"default": "index.html",
|
|
2026
|
+
"description": "The output path of the application's generated HTML index file. The full provided path will be used and will be considered relative to the application's configured output path."
|
|
2027
|
+
}
|
|
2028
|
+
}
|
|
2029
|
+
},
|
|
2030
|
+
{
|
|
2031
|
+
"const": false,
|
|
2032
|
+
"description": "Does not generate an `index.html` file."
|
|
2033
|
+
}
|
|
2034
|
+
]
|
|
2035
|
+
},
|
|
2036
|
+
"statsJson": {
|
|
2037
|
+
"type": "boolean",
|
|
2038
|
+
"description": "Generates a 'stats.json' file which can be analyzed using tools such as 'webpack-bundle-analyzer'.",
|
|
2039
|
+
"default": false
|
|
2040
|
+
},
|
|
2041
|
+
"budgets": {
|
|
2042
|
+
"description": "Budget thresholds to ensure parts of your application stay within boundaries which you set.",
|
|
2043
|
+
"type": "array",
|
|
2044
|
+
"items": {
|
|
2045
|
+
"$ref": "#/definitions/AngularDevkitBuildAngularBuildersApplicationSchema/definitions/budget"
|
|
2046
|
+
},
|
|
2047
|
+
"default": []
|
|
2048
|
+
},
|
|
2049
|
+
"webWorkerTsConfig": {
|
|
2050
|
+
"type": "string",
|
|
2051
|
+
"description": "TypeScript configuration for Web Worker modules."
|
|
2052
|
+
},
|
|
2053
|
+
"crossOrigin": {
|
|
2054
|
+
"type": "string",
|
|
2055
|
+
"description": "Define the crossorigin attribute setting of elements that provide CORS support.",
|
|
2056
|
+
"default": "none",
|
|
2057
|
+
"enum": [
|
|
2058
|
+
"none",
|
|
2059
|
+
"anonymous",
|
|
2060
|
+
"use-credentials"
|
|
2061
|
+
]
|
|
2062
|
+
},
|
|
2063
|
+
"allowedCommonJsDependencies": {
|
|
2064
|
+
"description": "A list of CommonJS packages that are allowed to be used without a build time warning.",
|
|
2065
|
+
"type": "array",
|
|
2066
|
+
"items": {
|
|
2067
|
+
"type": "string"
|
|
2068
|
+
},
|
|
2069
|
+
"default": []
|
|
2070
|
+
}
|
|
2071
|
+
},
|
|
2072
|
+
"additionalProperties": false,
|
|
2073
|
+
"definitions": {
|
|
2074
|
+
"assetPattern": {
|
|
2075
|
+
"oneOf": [
|
|
2076
|
+
{
|
|
2077
|
+
"type": "object",
|
|
2078
|
+
"properties": {
|
|
2079
|
+
"followSymlinks": {
|
|
2080
|
+
"type": "boolean",
|
|
2081
|
+
"default": false,
|
|
2082
|
+
"description": "Allow glob patterns to follow symlink directories. This allows subdirectories of the symlink to be searched."
|
|
2083
|
+
},
|
|
2084
|
+
"glob": {
|
|
2085
|
+
"type": "string",
|
|
2086
|
+
"description": "The pattern to match."
|
|
2087
|
+
},
|
|
2088
|
+
"input": {
|
|
2089
|
+
"type": "string",
|
|
2090
|
+
"description": "The input directory path in which to apply 'glob'. Defaults to the project root."
|
|
2091
|
+
},
|
|
2092
|
+
"ignore": {
|
|
2093
|
+
"description": "An array of globs to ignore.",
|
|
2094
|
+
"type": "array",
|
|
2095
|
+
"items": {
|
|
2096
|
+
"type": "string"
|
|
2097
|
+
}
|
|
2098
|
+
},
|
|
2099
|
+
"output": {
|
|
2100
|
+
"type": "string",
|
|
2101
|
+
"description": "Absolute path within the output."
|
|
2102
|
+
}
|
|
2103
|
+
},
|
|
2104
|
+
"additionalProperties": false
|
|
2105
|
+
},
|
|
2106
|
+
{
|
|
2107
|
+
"type": "string"
|
|
2108
|
+
}
|
|
2109
|
+
]
|
|
2110
|
+
},
|
|
2111
|
+
"fileReplacement": {
|
|
2112
|
+
"type": "object",
|
|
2113
|
+
"properties": {
|
|
2114
|
+
"replace": {
|
|
2115
|
+
"type": "string",
|
|
2116
|
+
"pattern": "\\.(([cm]?j|t)sx?|json)$"
|
|
2117
|
+
},
|
|
2118
|
+
"with": {
|
|
2119
|
+
"type": "string",
|
|
2120
|
+
"pattern": "\\.(([cm]?j|t)sx?|json)$"
|
|
2121
|
+
}
|
|
2122
|
+
},
|
|
2123
|
+
"additionalProperties": false
|
|
2124
|
+
},
|
|
2125
|
+
"budget": {
|
|
2126
|
+
"type": "object",
|
|
2127
|
+
"properties": {
|
|
2128
|
+
"type": {
|
|
2129
|
+
"type": "string",
|
|
2130
|
+
"description": "The type of budget.",
|
|
2131
|
+
"enum": [
|
|
2132
|
+
"all",
|
|
2133
|
+
"allScript",
|
|
2134
|
+
"any",
|
|
2135
|
+
"anyScript",
|
|
2136
|
+
"anyComponentStyle",
|
|
2137
|
+
"bundle",
|
|
2138
|
+
"initial"
|
|
2139
|
+
]
|
|
2140
|
+
},
|
|
2141
|
+
"name": {
|
|
2142
|
+
"type": "string",
|
|
2143
|
+
"description": "The name of the bundle."
|
|
2144
|
+
},
|
|
2145
|
+
"baseline": {
|
|
2146
|
+
"type": "string",
|
|
2147
|
+
"description": "The baseline size for comparison."
|
|
2148
|
+
},
|
|
2149
|
+
"maximumWarning": {
|
|
2150
|
+
"type": "string",
|
|
2151
|
+
"description": "The maximum threshold for warning relative to the baseline."
|
|
2152
|
+
},
|
|
2153
|
+
"maximumError": {
|
|
2154
|
+
"type": "string",
|
|
2155
|
+
"description": "The maximum threshold for error relative to the baseline."
|
|
2156
|
+
},
|
|
2157
|
+
"minimumWarning": {
|
|
2158
|
+
"type": "string",
|
|
2159
|
+
"description": "The minimum threshold for warning relative to the baseline."
|
|
2160
|
+
},
|
|
2161
|
+
"minimumError": {
|
|
2162
|
+
"type": "string",
|
|
2163
|
+
"description": "The minimum threshold for error relative to the baseline."
|
|
2164
|
+
},
|
|
2165
|
+
"warning": {
|
|
2166
|
+
"type": "string",
|
|
2167
|
+
"description": "The threshold for warning relative to the baseline (min & max)."
|
|
2168
|
+
},
|
|
2169
|
+
"error": {
|
|
2170
|
+
"type": "string",
|
|
2171
|
+
"description": "The threshold for error relative to the baseline (min & max)."
|
|
2172
|
+
}
|
|
2173
|
+
},
|
|
2174
|
+
"additionalProperties": false
|
|
2175
|
+
}
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
1615
2178
|
"AngularDevkitBuildAngularBuildersAppShellSchema": {
|
|
1616
2179
|
"title": "App Shell Target",
|
|
1617
2180
|
"description": "App Shell target options for Build Facade.",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cli",
|
|
3
|
-
"version": "16.1
|
|
3
|
+
"version": "16.2.0-next.1",
|
|
4
4
|
"description": "CLI tool for Angular",
|
|
5
5
|
"main": "lib/cli/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
},
|
|
26
26
|
"homepage": "https://github.com/angular/angular-cli",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@angular-devkit/architect": "0.
|
|
29
|
-
"@angular-devkit/core": "16.1
|
|
30
|
-
"@angular-devkit/schematics": "16.1
|
|
31
|
-
"@schematics/angular": "16.1
|
|
28
|
+
"@angular-devkit/architect": "0.1602.0-next.1",
|
|
29
|
+
"@angular-devkit/core": "16.2.0-next.1",
|
|
30
|
+
"@angular-devkit/schematics": "16.2.0-next.1",
|
|
31
|
+
"@schematics/angular": "16.2.0-next.1",
|
|
32
32
|
"@yarnpkg/lockfile": "1.1.0",
|
|
33
33
|
"ansi-colors": "4.1.3",
|
|
34
34
|
"ini": "4.1.1",
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
"ng-update": {
|
|
48
48
|
"migrations": "@schematics/angular/migrations/migration-collection.json",
|
|
49
49
|
"packageGroup": {
|
|
50
|
-
"@angular/cli": "16.1
|
|
51
|
-
"@angular-devkit/architect": "0.
|
|
52
|
-
"@angular-devkit/build-angular": "16.1
|
|
53
|
-
"@angular-devkit/build-webpack": "0.
|
|
54
|
-
"@angular-devkit/core": "16.1
|
|
55
|
-
"@angular-devkit/schematics": "16.1
|
|
50
|
+
"@angular/cli": "16.2.0-next.1",
|
|
51
|
+
"@angular-devkit/architect": "0.1602.0-next.1",
|
|
52
|
+
"@angular-devkit/build-angular": "16.2.0-next.1",
|
|
53
|
+
"@angular-devkit/build-webpack": "0.1602.0-next.1",
|
|
54
|
+
"@angular-devkit/core": "16.2.0-next.1",
|
|
55
|
+
"@angular-devkit/schematics": "16.2.0-next.1"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
58
|
"engines": {
|
package/src/utilities/version.js
CHANGED
|
@@ -21,6 +21,6 @@ class Version {
|
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
// TODO(bazel): Convert this to use build-time version stamping after flipping the build script to use bazel
|
|
24
|
-
// export const VERSION = new Version('16.1
|
|
24
|
+
// export const VERSION = new Version('16.2.0-next.1');
|
|
25
25
|
exports.VERSION = new Version(JSON.parse((0, fs_1.readFileSync)((0, path_1.resolve)(__dirname, '../../package.json'), 'utf-8')).version);
|
|
26
26
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3BhY2thZ2VzL2FuZ3VsYXIvY2xpL3NyYy91dGlsaXRpZXMvdmVyc2lvbi50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUE7Ozs7OztHQU1HOzs7QUFFSCwyQkFBa0M7QUFDbEMsK0JBQStCO0FBRS9CLCtDQUErQztBQUMvQyxNQUFNLE9BQU87SUFLWCxZQUE0QixJQUFZO1FBQVosU0FBSSxHQUFKLElBQUksQ0FBUTtRQUN0QyxNQUFNLENBQUMsS0FBSyxFQUFFLEtBQUssRUFBRSxLQUFLLENBQUMsR0FBRyxJQUFJLENBQUMsS0FBSyxDQUFDLEdBQUcsRUFBRSxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsR0FBRyxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQ2xFLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO1FBQ25CLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO1FBQ25CLElBQUksQ0FBQyxLQUFLLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7Q0FDRjtBQUVELDRHQUE0RztBQUM1RywyREFBMkQ7QUFDOUMsUUFBQSxPQUFPLEdBQUcsSUFBSSxPQUFPLENBRTlCLElBQUksQ0FBQyxLQUFLLENBQUMsSUFBQSxpQkFBWSxFQUFDLElBQUEsY0FBTyxFQUFDLFNBQVMsRUFBRSxvQkFBb0IsQ0FBQyxFQUFFLE9BQU8sQ0FBQyxDQUczRSxDQUFDLE9BQU8sQ0FDVixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAbGljZW5zZVxuICogQ29weXJpZ2h0IEdvb2dsZSBMTEMgQWxsIFJpZ2h0cyBSZXNlcnZlZC5cbiAqXG4gKiBVc2Ugb2YgdGhpcyBzb3VyY2UgY29kZSBpcyBnb3Zlcm5lZCBieSBhbiBNSVQtc3R5bGUgbGljZW5zZSB0aGF0IGNhbiBiZVxuICogZm91bmQgaW4gdGhlIExJQ0VOU0UgZmlsZSBhdCBodHRwczovL2FuZ3VsYXIuaW8vbGljZW5zZVxuICovXG5cbmltcG9ydCB7IHJlYWRGaWxlU3luYyB9IGZyb20gJ2ZzJztcbmltcG9ydCB7IHJlc29sdmUgfSBmcm9tICdwYXRoJztcblxuLy8gU2FtZSBzdHJ1Y3R1cmUgYXMgdXNlZCBpbiBmcmFtZXdvcmsgcGFja2FnZXNcbmNsYXNzIFZlcnNpb24ge1xuICBwdWJsaWMgcmVhZG9ubHkgbWFqb3I6IHN0cmluZztcbiAgcHVibGljIHJlYWRvbmx5IG1pbm9yOiBzdHJpbmc7XG4gIHB1YmxpYyByZWFkb25seSBwYXRjaDogc3RyaW5nO1xuXG4gIGNvbnN0cnVjdG9yKHB1YmxpYyByZWFkb25seSBmdWxsOiBzdHJpbmcpIHtcbiAgICBjb25zdCBbbWFqb3IsIG1pbm9yLCBwYXRjaF0gPSBmdWxsLnNwbGl0KCctJywgMSlbMF0uc3BsaXQoJy4nLCAzKTtcbiAgICB0aGlzLm1ham9yID0gbWFqb3I7XG4gICAgdGhpcy5taW5vciA9IG1pbm9yO1xuICAgIHRoaXMucGF0Y2ggPSBwYXRjaDtcbiAgfVxufVxuXG4vLyBUT0RPKGJhemVsKTogQ29udmVydCB0aGlzIHRvIHVzZSBidWlsZC10aW1lIHZlcnNpb24gc3RhbXBpbmcgYWZ0ZXIgZmxpcHBpbmcgdGhlIGJ1aWxkIHNjcmlwdCB0byB1c2UgYmF6ZWxcbi8vIGV4cG9ydCBjb25zdCBWRVJTSU9OID0gbmV3IFZlcnNpb24oJzAuMC4wLVBMQUNFSE9MREVSJyk7XG5leHBvcnQgY29uc3QgVkVSU0lPTiA9IG5ldyBWZXJzaW9uKFxuICAoXG4gICAgSlNPTi5wYXJzZShyZWFkRmlsZVN5bmMocmVzb2x2ZShfX2Rpcm5hbWUsICcuLi8uLi9wYWNrYWdlLmpzb24nKSwgJ3V0Zi04JykpIGFzIHtcbiAgICAgIHZlcnNpb246IHN0cmluZztcbiAgICB9XG4gICkudmVyc2lvbixcbik7XG4iXX0=
|