Merge branch 'future/angular12' into future/modern-frameworks

This commit is contained in:
Norbert de Langen 2022-05-23 17:37:45 +02:00
commit abf43fd7a0
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
31 changed files with 3355 additions and 2584 deletions

View File

@ -5,7 +5,8 @@ export const deepElementFromPoint = (x: number, y: number) => {
const crawlShadows = (node: Element): Element => {
if (node && node.shadowRoot) {
const nestedElement = node.shadowRoot.elementFromPoint(x, y);
// elementFromPoint() doesn't exist in ShadowRoot type
const nestedElement = (node.shadowRoot as any).elementFromPoint(x, y);
// Nested node is same as the root one
if (node.isEqualNode(nestedElement)) {

View File

@ -59,8 +59,8 @@
"ts-dedent": "^2.0.0"
},
"devDependencies": {
"@angular/core": "^11.2.0",
"@angular/platform-browser-dynamic": "^11.2.0",
"@angular/core": "^13.3.6",
"@angular/platform-browser-dynamic": "^13.3.6",
"@emotion/jest": "^11.8.0",
"@storybook/addon-docs": "6.5.0-beta.4",
"@storybook/angular": "6.5.0-beta.4",

View File

@ -1,15 +1,18 @@
# See http://help.github.com/ignore-files/ for more about ignoring files.
# compiled output
# Compiled output
/dist
/tmp
/out-tsc
/bazel-out
# dependencies
# Node
/node_modules
npm-debug.log
yarn-error.log
# IDEs and editors
/.idea
.idea/
.project
.classpath
.c9/
@ -17,25 +20,24 @@
.settings/
*.sublime-workspace
# IDE - VSCode
# Visual Studio Code
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history/*
# misc
/.sass-cache
# Miscellaneous
/.angular/cache
.sass-cache/
/connect.lock
/coverage
/libpeerconnection.log
npm-debug.log
yarn-error.log
testem.log
/typings
documentation.json
# System Files
# System files
.DS_Store
Thumbs.db
addon-jest.testresults.json
documentation.json

View File

@ -1,10 +1,11 @@
{
"extends": "../src/tsconfig.app.json",
"extends": "../tsconfig.app.json",
"exclude": [
"../src/karma.ts",
"../src/**/*.spec.ts"
],
"include": [
"../src/**/*"
"../src/**/*",
"preview.ts"
]
}
}

View File

@ -19,13 +19,20 @@
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"tsConfig": "tsconfig.app.json",
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.css", "src/styles.scss"],
"stylePreprocessorOptions": {
"includePaths": ["src/commons"]
},
"scripts": []
"scripts": [],
"aot": false,
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
@ -44,7 +51,8 @@
"vendorChunk": false,
"buildOptimizer": true
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
@ -110,13 +118,13 @@
"storybook": {
"builder": "@storybook/angular:start-storybook",
"options": {
"tsConfig": "src/tsconfig.app.json"
"tsConfig": "tsconfig.app.json"
}
},
"build-storybook": {
"builder": "@storybook/angular:build-storybook",
"options": {
"tsConfig": "src/tsconfig.app.json"
"tsConfig": "tsconfig.app.json"
}
}
}

View File

@ -3,6 +3,11 @@
"version": "6.5.0-beta.4",
"private": true,
"license": "MIT",
"workspaces": {
"nohoist": [
"**"
]
},
"scripts": {
"build": "ng build",
"build-storybook": "yarn storybook-prebuild && ng run angular-cli:build-storybook",
@ -19,25 +24,25 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@ngrx/store": "^10.1.2",
"@angular/common": "^13.3.6",
"@angular/compiler": "^13.3.6",
"@angular/core": "^13.3.6",
"@angular/forms": "^13.3.6",
"@angular/platform-browser": "^13.3.6",
"@angular/platform-browser-dynamic": "^13.3.6",
"@ngrx/store": "^13.2.0",
"core-js": "^3.8.2",
"rxjs": "^6.6.3",
"rxjs": "^6.6.7",
"sass": "^1.43.4",
"telejson": "^5.3.3",
"zone.js": "^0.11.3"
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.13",
"@angular-devkit/core": "^11.2.13",
"@angular/cli": "^11.2.13",
"@angular/compiler-cli": "^11.2.14",
"@angular/elements": "^11.2.14",
"@angular-devkit/build-angular": "^13.3.5",
"@angular-devkit/core": "^13.3.5",
"@angular/cli": "^13.3.5",
"@angular/compiler-cli": "^13.3.6",
"@angular/elements": "^13.3.6",
"@compodoc/compodoc": "^1.1.18",
"@storybook/addon-a11y": "6.5.0-beta.4",
"@storybook/addon-actions": "6.5.0-beta.4",

View File

@ -8,4 +8,7 @@ if (environment.production) {
enableProdMode();
}
platformBrowserDynamic().bootstrapModule(AppModule);
platformBrowserDynamic()
.bootstrapModule(AppModule)
// eslint-disable-next-line
.catch((err) => console.error(err));

View File

@ -8,60 +8,45 @@
* file.
*
* The current setup is for so-called "evergreen" browsers; the last versions of browsers that
* automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
* Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
* automatically update themselves. This includes recent versions of Safari, Chrome (including
* Opera), Edge on the desktop, and iOS and Chrome on mobile.
*
* Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
* Learn more in https://angular.io/guide/browser-support
*/
/** *************************************************************************************************
* BROWSER POLYFILLS
*/
/* IE9, IE10 and IE11 requires all of the following polyfills. */
// import 'core-js/es6/symbol';
// import 'core-js/es6/object';
// import 'core-js/es6/function';
// import 'core-js/es6/parse-int';
// import 'core-js/es6/parse-float';
// import 'core-js/es6/number';
// import 'core-js/es6/math';
// import 'core-js/es6/string';
// import 'core-js/es6/date';
// import 'core-js/es6/array';
// import 'core-js/es6/regexp';
// import 'core-js/es6/map';
// import 'core-js/es6/weak-map';
// import 'core-js/es6/set';
/** IE10 and IE11 requires the following for NgClass support on SVG elements */
// import 'classlist.js'; // Run `npm install --save classlist.js`.
/* Evergreen browsers require these. */
import 'core-js/es/reflect';
import 'core-js/proposals/reflect-metadata';
/**
* Required to support Web Animations `@angular/animation`.
* Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation
* By default, zone.js will patch all possible macroTask and DomEvents
* user can disable parts of macroTask/DomEvents patch by setting following flags
* because those flags need to be set before `zone.js` being loaded, and webpack
* will put import in the top of bundle, so user need to create a separate file
* in this directory (for example: zone-flags.ts), and put the following flags
* into that file, and then add the following code before importing zone.js.
* import './zone-flags';
*
* The flags allowed in zone-flags.ts are listed here.
*
* The following flags will work for all browsers.
*
* (window as any).__Zone_disable_requestAnimationFrame = true; // disable patch requestAnimationFrame
* (window as any).__Zone_disable_on_property = true; // disable patch onProperty such as onclick
* (window as any).__zone_symbol__UNPATCHED_EVENTS = ['scroll', 'mousemove']; // disable patch specified eventNames
*
* in IE/Edge developer tools, the addEventListener will also be wrapped by zone.js
* with the following flag, it will bypass `zone.js` patch for IE/Edge
*
* (window as any).__Zone_enable_cross_context_check = true;
*
*/
// import 'web-animations-js'; // Run `npm install --save web-animations-js`.
/** *************************************************************************************************
* Zone JS is required by Angular itself.
* Zone JS is required by default for Angular itself.
*/
import 'zone.js/dist/zone'; // Included with Angular CLI.
import 'zone.js'; // Included with Angular CLI.
/** *************************************************************************************************
* APPLICATION IMPORTS
*/
/**
* Date, currency, decimal and percent pipes.
* Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
*/
// import 'intl'; // Run `npm install --save intl`.
/**
* Need to import at least one locale-data with intl.
*/
// import 'intl/locale-data/jsonp/en';

View File

@ -3,7 +3,7 @@
exports[`Storyshots Core / Story host styles With Args 1`] = `
<storybook-wrapper>
<storybook-button-component
_ngcontent-a-c155=""
_ngcontent-a-c160=""
ng-reflect-text="Button with custom styles"
>
<button>
@ -16,7 +16,7 @@ exports[`Storyshots Core / Story host styles With Args 1`] = `
exports[`Storyshots Core / Story host styles With story template 1`] = `
<storybook-wrapper>
<storybook-button-component
_ngcontent-a-c154=""
_ngcontent-a-c159=""
ng-reflect-text="Button with custom styles"
>
<button>

View File

@ -1,15 +0,0 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"baseUrl": "./",
"module": "es2015",
"types": [
"node"
]
},
"exclude": [
"karma.ts",
"**/*.spec.ts"
]
}

View File

@ -0,0 +1,17 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": []
},
"files": [
"src/main.ts",
"src/polyfills.ts"
],
"include": [
"src/**/*.d.ts"
],
"exclude": [
"**/*.stories.*"
]
}

View File

@ -6,22 +6,39 @@
},
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"sourceMap": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"baseUrl": "./",
"declaration": false,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": [
"es2020",
"dom"
],
"module": "es2020",
"moduleResolution": "node",
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": false,
"noPropertyAccessFromIndexSignature": false,
"outDir": "./dist/out-tsc",
"skipLibCheck": true,
"target": "es5",
"sourceMap": true,
"strict": false,
"target": "es2017",
"typeRoots": [
"../../node_modules/@types",
"node_modules/@types"
],
"lib": [
"es2017",
"dom"
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}
}

View File

@ -1,4 +1,5 @@
module.exports = {
preset: 'jest-preset-angular',
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
transformIgnorePatterns: ['^.+\\.js$'],
};

View File

@ -71,24 +71,25 @@
"webpack": "5"
},
"devDependencies": {
"@angular-devkit/architect": "~0.1102.0",
"@angular-devkit/build-angular": "~0.1102.13",
"@angular-devkit/core": "^11.2.13",
"@angular/cli": "^11.2.14",
"@angular/common": "^11.2.14",
"@angular/compiler": "^11.2.14",
"@angular/compiler-cli": "^11.2.14",
"@angular/core": "^11.2.14",
"@angular/forms": "^11.2.14",
"@angular/platform-browser": "^11.2.14",
"@angular/platform-browser-dynamic": "^11.2.14",
"@nrwl/workspace": "^11.6.3",
"@angular-devkit/architect": "^0.1303.5",
"@angular-devkit/build-angular": "^13.3.5",
"@angular-devkit/core": "^13.3.5",
"@angular/cli": "^13.3.5",
"@angular/common": "^13.3.6",
"@angular/compiler": "^13.3.6",
"@angular/compiler-cli": "^13.3.6",
"@angular/core": "^13.3.6",
"@angular/elements": "^13.3.6",
"@angular/forms": "^13.3.6",
"@angular/platform-browser": "^13.3.6",
"@angular/platform-browser-dynamic": "^13.3.6",
"@nrwl/workspace": "^14.1.4",
"@types/autoprefixer": "^9.7.2",
"@types/tmp": "^0.2.3",
"cross-spawn": "^7.0.3",
"jest": "^26.6.3",
"jest-preset-angular": "^8.3.2",
"jest-specific-snapshot": "^4.0.0",
"jest": "^27.5.1",
"jest-preset-angular": "^12.0.0",
"jest-specific-snapshot": "^5.0.0",
"tmp": "^0.2.1",
"typescript": "^4.6.3",
"webpack": "5"

View File

@ -1,4 +1,4 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import 'jest-preset-angular';
import 'jest-preset-angular/setup-jest';
global.EventSource = class {} as any;

View File

@ -36,7 +36,7 @@ export type StorybookBuilderOptions = JsonObject & {
export type StorybookBuilderOutput = JsonObject & BuilderOutput & {};
export default createBuilder(commandBuilder);
export default createBuilder<any, any>(commandBuilder);
function commandBuilder(
options: StorybookBuilderOptions,

View File

@ -46,7 +46,7 @@ export type StorybookBuilderOptions = JsonObject & {
export type StorybookBuilderOutput = JsonObject & BuilderOutput & {};
export default createBuilder(commandBuilder);
export default createBuilder<any, any>(commandBuilder);
function commandBuilder(
options: StorybookBuilderOptions,

View File

@ -6,7 +6,6 @@ import {
Pipe,
Type,
ɵReflectionCapabilities as ReflectionCapabilities,
ɵCodegenComponentFactoryResolver,
} from '@angular/core';
const reflectionCapabilities = new ReflectionCapabilities();

View File

@ -106,7 +106,7 @@ const buildWebpackConfigOptions = async (
getSystemPath(workspaceRootNormalized),
projectBuildOptions.tsConfig as string
);
const tsConfig = importAngularCliReadTsconfigUtil().readTsconfig(tsConfigPath);
const tsConfig = await importAngularCliReadTsconfigUtil().readTsconfig(tsConfigPath);
const ts = await import('typescript');
const scriptTarget = tsConfig.options.target || ts.ScriptTarget.ES5;
@ -120,6 +120,9 @@ const buildWebpackConfigOptions = async (
scripts: [],
sourceMap: {},
styles: [],
// Deleted in angular 12. Keep for compatibility with versions lower than angular 12
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
lazyModules: [],
// Project Options
@ -134,10 +137,15 @@ const buildWebpackConfigOptions = async (
// Forced options
statsJson: false,
// Deleted in angular 12. Keep for compatibility with versions lower than angular 12
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
forkTypeChecker: false,
};
return {
projectName: 'this-is-just-a-fake-name-for-getting-rid-of-the-error',
root: getSystemPath(workspaceRootNormalized),
// The dependency of `@angular-devkit/build-angular` to `@angular-devkit/core` is not exactly the same version as the one for storybook (node modules of node modules ^^)
logger: createConsoleLogger() as unknown as WebpackConfigOptions['logger'],

View File

@ -205,27 +205,47 @@ describe('framework-preset-angular-cli', () => {
const baseWebpackConfig = newWebpackConfiguration();
const webpackFinalConfig = await webpackFinal(baseWebpackConfig, options);
const expectedRules: any = [
{
oneOf: [
{
exclude: [],
use: expect.anything(),
},
{
include: [],
use: expect.anything(),
},
],
},
{ use: expect.anything() },
];
expect(webpackFinalConfig.module.rules).toEqual([
{
exclude: [],
test: /\.css$/,
use: expect.anything(),
test: /\.(?:css)$/i,
rules: expectedRules,
},
{
exclude: [],
test: /\.scss$|\.sass$/,
use: expect.anything(),
test: /\.(?:scss)$/i,
rules: expectedRules,
},
{
exclude: [],
test: /\.less$/,
use: expect.anything(),
test: /\.(?:sass)$/i,
rules: expectedRules,
},
{
exclude: [],
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:less)$/i,
rules: expectedRules,
},
{
test: /\.(?:styl)$/i,
rules: expectedRules,
},
{ mimetype: 'text/css', use: expect.anything() },
{ mimetype: 'text/x-scss', use: expect.anything() },
{ mimetype: 'text/x-sass', use: expect.anything() },
{ mimetype: 'text/x-less', use: expect.anything() },
{ mimetype: 'text/x-stylus', use: expect.anything() },
...baseWebpackConfig.module.rules,
]);
});
@ -239,10 +259,12 @@ describe('framework-preset-angular-cli', () => {
AnyComponentStyleBudgetChecker {
"budgets": Array [],
},
Object {
"apply": [Function],
},
ContextReplacementPlugin {
"newContentRecursive": undefined,
"newContentRegExp": undefined,
"newContentResource": undefined,
"newContentCreateContextMap": [Function],
"newContentResource": "/Users/shilman/projects/baseline/storybook/app/angular/src/server/__mocks-ng-workspace__/minimal-config/$_lazy_route_resources",
"resourceRegExp": /\\\\@angular\\(\\\\\\\\\\|\\\\/\\)core\\(\\\\\\\\\\|\\\\/\\)/,
},
DedupeModuleResolvePlugin {
@ -275,26 +297,7 @@ describe('framework-preset-angular-cli', () => {
expect(webpackFinalConfig.resolve.plugins).toMatchInlineSnapshot(`
Array [
TsconfigPathsPlugin {
"absoluteBaseUrl": "${(
getSystemPath(normalize(path.join(workspaceRoot, 'src'))) + path.sep
).replace(/\\/g, '\\\\')}",
"baseUrl": "./",
"extensions": Array [
".ts",
".tsx",
],
"log": Object {
"log": [Function],
"logError": [Function],
"logInfo": [Function],
"logWarning": [Function],
},
"matchPath": [Function],
"source": "described-resolve",
"target": "resolve",
},
]
`);
"absoluteBaseUrl": "`);
});
});
describe('when angular.json have "options.styles" config', () => {
@ -328,51 +331,47 @@ describe('framework-preset-angular-cli', () => {
it('should set webpack "module.rules"', async () => {
const baseWebpackConfig = newWebpackConfiguration();
const webpackFinalConfig = await webpackFinal(baseWebpackConfig, options);
const stylePaths = [
path.join(workspaceRoot, 'src', 'styles.css'),
path.join(workspaceRoot, 'src', 'styles.scss'),
const expectedRules = [
{
oneOf: [
{
exclude: [`${workspaceRoot}/src/styles.css`, `${workspaceRoot}/src/styles.scss`],
use: expect.anything(),
},
{
include: [`${workspaceRoot}/src/styles.css`, `${workspaceRoot}/src/styles.scss`],
use: expect.anything(),
},
],
},
{ use: expect.anything() },
];
expect(webpackFinalConfig.module.rules).toEqual([
{
exclude: stylePaths,
test: /\.css$/,
use: expect.anything(),
test: /\.(?:css)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.scss$|\.sass$/,
use: expect.anything(),
test: /\.(?:scss)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.less$/,
use: expect.anything(),
test: /\.(?:sass)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:less)$/i,
rules: expectedRules,
},
{
include: stylePaths,
test: /\.css$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.scss$|\.sass$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.less$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:styl)$/i,
rules: expectedRules,
},
{ mimetype: 'text/css', use: expect.anything() },
{ mimetype: 'text/x-scss', use: expect.anything() },
{ mimetype: 'text/x-sass', use: expect.anything() },
{ mimetype: 'text/x-less', use: expect.anything() },
{ mimetype: 'text/x-stylus', use: expect.anything() },
...baseWebpackConfig.module.rules,
]);
});
@ -427,47 +426,47 @@ describe('framework-preset-angular-cli', () => {
path.join(workspaceRoot, 'src', 'styles.scss'),
];
const expectedRules: any = [
{
oneOf: [
{
exclude: [`${workspaceRoot}/src/styles.css`, `${workspaceRoot}/src/styles.scss`],
use: expect.anything(),
},
{
include: [`${workspaceRoot}/src/styles.css`, `${workspaceRoot}/src/styles.scss`],
use: expect.anything(),
},
],
},
{ use: expect.anything() },
];
expect(webpackFinalConfig.module.rules).toEqual([
{
exclude: stylePaths,
test: /\.css$/,
use: expect.anything(),
test: /\.(?:css)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.scss$|\.sass$/,
use: expect.anything(),
test: /\.(?:scss)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.less$/,
use: expect.anything(),
test: /\.(?:sass)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:less)$/i,
rules: expectedRules,
},
{
include: stylePaths,
test: /\.css$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.scss$|\.sass$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.less$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:styl)$/i,
rules: expectedRules,
},
{ mimetype: 'text/css', use: expect.anything() },
{ mimetype: 'text/x-scss', use: expect.anything() },
{ mimetype: 'text/x-sass', use: expect.anything() },
{ mimetype: 'text/x-less', use: expect.anything() },
{ mimetype: 'text/x-stylus', use: expect.anything() },
...baseWebpackConfig.module.rules,
]);
});
@ -513,47 +512,47 @@ describe('framework-preset-angular-cli', () => {
path.join(workspaceRoot, 'src', 'styles.scss'),
];
const expectedRules: any = [
{
oneOf: [
{
exclude: [`${workspaceRoot}/src/styles.css`, `${workspaceRoot}/src/styles.scss`],
use: expect.anything(),
},
{
include: [`${workspaceRoot}/src/styles.css`, `${workspaceRoot}/src/styles.scss`],
use: expect.anything(),
},
],
},
{ use: expect.anything() },
];
expect(webpackFinalConfig.module.rules).toEqual([
{
exclude: stylePaths,
test: /\.css$/,
use: expect.anything(),
test: /\.(?:css)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.scss$|\.sass$/,
use: expect.anything(),
test: /\.(?:scss)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.less$/,
use: expect.anything(),
test: /\.(?:sass)$/i,
rules: expectedRules,
},
{
exclude: stylePaths,
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:less)$/i,
rules: expectedRules,
},
{
include: stylePaths,
test: /\.css$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.scss$|\.sass$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.less$/,
use: expect.anything(),
},
{
include: stylePaths,
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:styl)$/i,
rules: expectedRules,
},
{ mimetype: 'text/css', use: expect.anything() },
{ mimetype: 'text/x-scss', use: expect.anything() },
{ mimetype: 'text/x-sass', use: expect.anything() },
{ mimetype: 'text/x-less', use: expect.anything() },
{ mimetype: 'text/x-stylus', use: expect.anything() },
...baseWebpackConfig.module.rules,
]);
});
@ -587,27 +586,47 @@ describe('framework-preset-angular-cli', () => {
const baseWebpackConfig = newWebpackConfiguration();
const webpackFinalConfig = await webpackFinal(baseWebpackConfig, options);
const expectedRules: any = [
{
oneOf: [
{
exclude: [],
use: expect.anything(),
},
{
include: [],
use: expect.anything(),
},
],
},
{ use: expect.anything() },
];
expect(webpackFinalConfig.module.rules).toEqual([
{
exclude: [],
test: /\.css$/,
use: expect.anything(),
test: /\.(?:css)$/i,
rules: expectedRules,
},
{
exclude: [],
test: /\.scss$|\.sass$/,
use: expect.anything(),
test: /\.(?:scss)$/i,
rules: expectedRules,
},
{
exclude: [],
test: /\.less$/,
use: expect.anything(),
test: /\.(?:sass)$/i,
rules: expectedRules,
},
{
exclude: [],
test: /\.styl$/,
use: expect.anything(),
test: /\.(?:less)$/i,
rules: expectedRules,
},
{
test: /\.(?:styl)$/i,
rules: expectedRules,
},
{ mimetype: 'text/css', use: expect.anything() },
{ mimetype: 'text/x-scss', use: expect.anything() },
{ mimetype: 'text/x-sass', use: expect.anything() },
{ mimetype: 'text/x-less', use: expect.anything() },
{ mimetype: 'text/x-stylus', use: expect.anything() },
...baseWebpackConfig.module.rules,
]);
});

View File

@ -44,7 +44,7 @@ export async function webpack(
},
{
test: /[/\\]@angular[/\\]core[/\\].+\.js$/,
parser: { system: true },
parser: { system: false },
},
{
test: /\.html$/,

View File

@ -16,8 +16,8 @@ import {
relative,
resolve,
} from '@angular-devkit/core';
import { AssetPattern, AssetPatternClass } from '@angular-devkit/build-angular/src/browser/schema';
import { AssetPattern } from '@angular-devkit/build-angular';
import { AssetPatternClass } from '@angular-devkit/build-angular/src/builders/browser/schema';
export class MissingAssetSourceRootException extends BaseException {
constructor(path: string) {

View File

@ -1,5 +1,4 @@
import { OptimizationUnion } from '@angular-devkit/build-angular/src/browser/schema';
import { OptimizationUnion } from '@angular-devkit/build-angular';
import { NormalizedOptimizationOptions } from '@angular-devkit/build-angular/src/utils/normalize-optimization';
import { moduleIsAvailable } from './module-is-available';

View File

@ -4,6 +4,10 @@
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"lib": [
"es2020",
"dom"
],
"outDir": "dist",
"types": ["node"],
"rootDir": "./src",

View File

@ -67,7 +67,7 @@
"terser-webpack-plugin": "^5.3.1",
"ts-dedent": "^2.0.0",
"util-deprecate": "^1.0.2",
"webpack": "^5.9.0",
"webpack": "5",
"webpack-dev-middleware": "^5.3.1",
"webpack-hot-middleware": "^2.25.1",
"webpack-virtual-modules": "^0.4.3"

View File

@ -66,7 +66,7 @@
"terser-webpack-plugin": "^5.3.1",
"ts-dedent": "^2.0.0",
"util-deprecate": "^1.0.2",
"webpack": "^5.9.0",
"webpack": "5",
"webpack-dev-middleware": "^5.3.1",
"webpack-virtual-modules": "^0.4.3"
},

View File

@ -101,6 +101,7 @@
"defaults"
],
"resolutions": {
"@nrwl/cli": "12.3.4",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/experimental-utils": "5.3.0",
"@typescript-eslint/parser": "^5.15.0",

View File

@ -37,7 +37,8 @@
"core-js": "^3.8.2",
"html-loader": "^3.1.0",
"react": "16.14.0",
"react-dom": "16.14.0"
"react-dom": "16.14.0",
"webpack": "5"
},
"peerDependencies": {
"@babel/core": "*"

View File

@ -48,8 +48,7 @@
},
"devDependencies": {
"@vue/compiler-sfc": "^3.2.33",
"vue": "^3.2.33",
"webpack": "5"
"vue": "^3.2.33"
},
"peerDependencies": {
"@babel/core": "*",

View File

@ -23,6 +23,7 @@
]
},
"exclude": [
"dist",
"**/dist",
"node_modules",
"**/node_modules",

5330
yarn.lock

File diff suppressed because it is too large Load Diff