Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standalone migration #101

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 22 additions & 16 deletions .storybook/main.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
module.exports = {
"stories": [
"../src/**/*.stories.mdx",
"../src/**/*.stories.@(js|jsx|ts|tsx)"
],
"addons": [
"@storybook/addon-links",
"@storybook/addon-essentials",
"@storybook/addon-google-analytics"
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-google-analytics',
'@storybook/addon-mdx-gfm'
],

webpackFinal: async (config, { configType }) => {
// `configType` has a value of 'DEVELOPMENT' or 'PRODUCTION'
// You can change the configuration based on that.
Expand All @@ -20,13 +19,11 @@ module.exports = {
{
loader: 'postcss-loader',
options: {
ident: 'postcss',
syntax: 'postcss-scss',
plugins: () => [
require('postcss-import'),
require('tailwindcss'),
require('autoprefixer')
]
postcssOptions: {
ident: 'postcss',
syntax: 'postcss-scss',
plugins: ['postcss-import', 'tailwindcss', 'autoprefixer']
}
}
},
{
Expand All @@ -38,4 +35,13 @@ module.exports = {
// Return the altered config
return config;
},
}

framework: {
name: '@storybook/angular',
options: {}
},

docs: {
autodocs: true
}
};
11 changes: 4 additions & 7 deletions .storybook/preview.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@

import { setCompodocJson } from "@storybook/addon-docs/angular";
import docJson from "../documentation.json";
import { setCompodocJson } from '@storybook/addon-docs/angular';
import docJson from '../documentation.json';
setCompodocJson(docJson);
import "../src/styles.scss";


export const parameters = {
actions: { argTypesRegex: "^on[A-Z].*" },
actions: { argTypesRegex: '^on[A-Z].*' },
controls: { expanded: true }
}
};
19 changes: 4 additions & 15 deletions .storybook/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,9 @@
{
"extends": "../tsconfig.app.json",
"compilerOptions": {
"types": [
"node"
]
"types": ["node"]
},
"exclude": [
"../src/test.ts",
"../src/**/*.spec.ts",
"../projects/**/*.spec.ts"
],
"include": [
"../src/**/*",
"../projects/**/*"
],
"files": [
"./typings.d.ts"
]
"exclude": ["../src/test.ts", "../src/**/*.spec.ts", "../projects/**/*.spec.ts"],
"include": ["../src/**/*", "../projects/**/*"],
"files": ["./typings.d.ts"]
}
51 changes: 45 additions & 6 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
"@schematics/angular:interceptor": {
"skipTests": true
},
"@schematics/angular:module": {
},
"@schematics/angular:module": {},
"@schematics/angular:pipe": {
"skipTests": true
},
Expand All @@ -47,7 +46,7 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": true,
"assets": [
"assets": [
"src/assets",
"src/data",
{
Expand All @@ -57,6 +56,7 @@
}
],
"styles": [
"node_modules/ng-zorro-antd/ng-zorro-antd.min.css",
"./node_modules/quill/dist/quill.core.css",
"./node_modules/quill/dist/quill.snow.css",
"src/styles.scss"
Expand Down Expand Up @@ -127,7 +127,7 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": [
"assets": [
"src/assets"
],
"styles": [
Expand Down Expand Up @@ -160,13 +160,52 @@
"devServerTarget": "frontend:serve:production"
}
}
},
"storybook": {
"builder": "@storybook/angular:start-storybook",
"options": {
"configDir": ".storybook",
"browserTarget": "frontend:build",
"compodoc": true,
"compodocArgs": [
"-e",
"json",
"-d",
"."
],
"port": 6006
}
},
"build-storybook": {
"builder": "@storybook/angular:build-storybook",
"options": {
"configDir": ".storybook",
"browserTarget": "frontend:build",
"compodoc": true,
"compodocArgs": [
"-e",
"json",
"-d",
"."
],
"outputDir": "storybook-static"
}
}
}
}
},
"defaultProject": "frontend",
"cli": {
"analytics": false,
"defaultCollection": "@datorama/akita"
"schematicCollections": [
"@datorama/akita"
]
},
"schematics": {
"@angular-eslint/schematics:application": {
"setParserOptionsProject": true
},
"@angular-eslint/schematics:library": {
"setParserOptionsProject": true
}
}
}
Loading