@fortawesome/vue-fontawesome 0.1.0-4 → 0.1.2
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/.github/ISSUE_TEMPLATE/bug-report.md +13 -0
- package/.github/ISSUE_TEMPLATE/feature-request.md +25 -0
- package/CHANGELOG.md +28 -0
- package/CODE_OF_CONDUCT.md +74 -0
- package/CONTRIBUTING.md +57 -0
- package/DEVELOPMENT.md +23 -0
- package/README.md +292 -41
- package/UPGRADING.md +7 -7
- package/examples/vue-cli/package.json +25 -25
- package/examples/vue-cli/src/App.vue +1 -1
- package/index.es.js +501 -0
- package/index.js +2 -2
- package/package.json +14 -4
- package/src/components/FontAwesomeLayersText.js +2 -2
- package/src/components/__tests__/FontAwesomeIcon.test.js +2 -2
- package/src/components/__tests__/FontAwesomeLayersText.test.js +7 -0
- package/yarn.lock +2008 -971
- package/examples/vue-cli/config/index.js +0 -69
- package/yarn-error.log +0 -3994
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
'use strict'
|
|
2
|
-
// Template version: 1.3.1
|
|
3
|
-
// see http://vuejs-templates.github.io/webpack for documentation.
|
|
4
|
-
|
|
5
|
-
const path = require('path')
|
|
6
|
-
|
|
7
|
-
module.exports = {
|
|
8
|
-
dev: {
|
|
9
|
-
|
|
10
|
-
// Paths
|
|
11
|
-
assetsSubDirectory: 'static',
|
|
12
|
-
assetsPublicPath: '/',
|
|
13
|
-
proxyTable: {},
|
|
14
|
-
|
|
15
|
-
// Various Dev Server settings
|
|
16
|
-
host: 'localhost', // can be overwritten by process.env.HOST
|
|
17
|
-
port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined
|
|
18
|
-
autoOpenBrowser: false,
|
|
19
|
-
errorOverlay: true,
|
|
20
|
-
notifyOnErrors: true,
|
|
21
|
-
poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
/**
|
|
25
|
-
* Source Maps
|
|
26
|
-
*/
|
|
27
|
-
|
|
28
|
-
// https://webpack.js.org/configuration/devtool/#development
|
|
29
|
-
devtool: 'cheap-module-eval-source-map',
|
|
30
|
-
|
|
31
|
-
// If you have problems debugging vue-files in devtools,
|
|
32
|
-
// set this to false - it *may* help
|
|
33
|
-
// https://vue-loader.vuejs.org/en/options.html#cachebusting
|
|
34
|
-
cacheBusting: true,
|
|
35
|
-
|
|
36
|
-
cssSourceMap: true
|
|
37
|
-
},
|
|
38
|
-
|
|
39
|
-
build: {
|
|
40
|
-
// Template for index.html
|
|
41
|
-
index: path.resolve(__dirname, '../dist/index.html'),
|
|
42
|
-
|
|
43
|
-
// Paths
|
|
44
|
-
assetsRoot: path.resolve(__dirname, '../dist'),
|
|
45
|
-
assetsSubDirectory: 'static',
|
|
46
|
-
assetsPublicPath: '/',
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Source Maps
|
|
50
|
-
*/
|
|
51
|
-
|
|
52
|
-
productionSourceMap: true,
|
|
53
|
-
// https://webpack.js.org/configuration/devtool/#production
|
|
54
|
-
devtool: '#source-map',
|
|
55
|
-
|
|
56
|
-
// Gzip off by default as many popular static hosts such as
|
|
57
|
-
// Surge or Netlify already gzip all static assets for you.
|
|
58
|
-
// Before setting to `true`, make sure to:
|
|
59
|
-
// npm install --save-dev compression-webpack-plugin
|
|
60
|
-
productionGzip: false,
|
|
61
|
-
productionGzipExtensions: ['js', 'css'],
|
|
62
|
-
|
|
63
|
-
// Run the build command with an extra argument to
|
|
64
|
-
// View the bundle analyzer report after build finishes:
|
|
65
|
-
// `npm run build --report`
|
|
66
|
-
// Set to `true` or `false` to always turn it on or off
|
|
67
|
-
bundleAnalyzerReport: process.env.npm_config_report
|
|
68
|
-
}
|
|
69
|
-
}
|