-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from Jannchie/fix/bar-x-axis
🩹 fix(bar): x axis domain
- Loading branch information
Showing
5 changed files
with
46 additions
and
50 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
const path = require("path"); | ||
const path = require('path') | ||
module.exports = { | ||
entry: "./src/index.ts", | ||
entry: './src/index.ts', | ||
output: { | ||
filename: "anichart.js", | ||
path: path.resolve(__dirname, "dist"), | ||
library: "anichart", | ||
libraryTarget: "umd", | ||
globalObject: "this", | ||
filename: 'anichart.js', | ||
path: path.resolve(__dirname, 'dist'), | ||
library: 'anichart', | ||
libraryTarget: 'umd', | ||
globalObject: 'this', | ||
}, | ||
resolve: { | ||
extensions: [".ts", ".js"], | ||
extensions: ['.ts', '.js'], | ||
}, | ||
module: { | ||
rules: [ | ||
{ | ||
test: /\.ts?$/, | ||
loader: "ts-loader", | ||
options: { configFile: "tsconfig.json" }, | ||
loader: 'ts-loader', | ||
options: { configFile: 'tsconfig.json' }, | ||
}, | ||
{ | ||
test: /\.js$/, | ||
use: { | ||
loader: "babel-loader", | ||
loader: 'babel-loader', | ||
}, | ||
exclude: "/node_modules/", | ||
exclude: '/node_modules/', | ||
}, | ||
], | ||
}, | ||
}; | ||
} |
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,7 +1,7 @@ | ||
const { CleanWebpackPlugin } = require("clean-webpack-plugin"); | ||
const { merge } = require("webpack-merge"); | ||
const common = require("./webpack.common.js"); | ||
const { CleanWebpackPlugin } = require('clean-webpack-plugin') | ||
const { merge } = require('webpack-merge') | ||
const common = require('./webpack.common.js') | ||
module.exports = merge(common, { | ||
mode: "production", | ||
mode: 'production', | ||
plugins: [new CleanWebpackPlugin()], | ||
}); | ||
}) |
0f98f1c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
anichart-doc – ./
anichart-doc-jannchie.vercel.app
anichart.vercel.app
anichart-doc-git-main-jannchie.vercel.app