Compare commits

...

5 Commits

Author SHA1 Message Date
97793d58aa why do you hate me ? 2020-04-25 23:42:54 +02:00
c0c68f7565 fixed case sensitive filenames 2020-04-25 23:26:20 +02:00
47c5b1e6a4 fixed git tag in webpack with drone 2020-04-25 23:00:50 +02:00
d0092657d7 Merge pull request 'v0.3: Extension' (#3) from develop into master
Reviewed-on: #3
2020-04-25 20:38:56 +00:00
066780bfba Merge pull request 'v0.2' (#2) from develop into master
Reviewed-on: #2
2020-04-23 12:16:21 +00:00
5 changed files with 21 additions and 8 deletions

6
package-lock.json generated
View File

@ -2542,6 +2542,12 @@
}
}
},
"case-sensitive-paths-webpack-plugin": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz",
"integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==",
"dev": true
},
"caseless": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",

View File

@ -20,6 +20,7 @@
"@types/react-dom": "^16.9.6",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",

View File

@ -2,7 +2,7 @@ import * as React from "react";
import "../style/search.scss";
import Sugestion from "./Sugestion";
import { Suggestion, SuggestionType } from "../types/suggestion";
import { Suggestion, SuggestionType } from "../types/Suggestion";
import getGoogleSuggestions from "../functions/getGoogleSuggestions";
interface State {

View File

@ -1,7 +1,7 @@
import * as React from "react";
import "../style/suggestion.scss";
import { Suggestion } from "../types/suggestion";
import { Suggestion } from "../types/Suggestion";
interface Props {
suggestion: Suggestion;

View File

@ -4,17 +4,22 @@
const HtmlWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyWebpackPlugin = require('copy-webpack-plugin');
const CaseSensitivePathsPlugin = require("case-sensitive-paths-webpack-plugin");
const Webpack = require("webpack");
const path = require("path");
const DEVELOPMENT = process.env.NODE_ENV === "development";
const version = require('child_process')
.execSync("git describe --abbrev=0")
.toString()
.replace("v", "")
.trim();
let version = process.env.DRONE_TAG;
if(!version){
version = require('child_process')
.execSync("git describe --abbrev=0")
.toString();
}
version = version.replace("v", "").trim();
module.exports = {
context: path.join(__dirname, "src"),
@ -82,6 +87,7 @@ module.exports = {
]),
new Webpack.DefinePlugin({
VERSION: JSON.stringify(version),
})
}),
new CaseSensitivePathsPlugin()
]
};