Parcourir la source

added built file

Skylsmoi il y a 6 ans
Parent
révision
40d7508892
3 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 0 1
      .gitignore
  2. 1 0
      dist/tracim_lib.js
  3. 2 2
      webpack.config.js

+ 0 - 1
.gitignore Voir le fichier

@@ -2,4 +2,3 @@
2 2
 .idea/
3 3
 .git/
4 4
 node_modules/
5
-/dist/tracimLib.js

+ 1 - 0
dist/tracim_lib.js Voir le fichier

@@ -0,0 +1 @@
1
+var tracim_lib=function(e){function r(t){if(n[t])return n[t].exports;var o=n[t]={i:t,l:!1,exports:{}};return e[t].call(o.exports,o,o.exports,r),o.l=!0,o.exports}var n={};return r.m=e,r.c=n,r.d=function(e,n,t){r.o(e,n)||Object.defineProperty(e,n,{configurable:!1,enumerable:!0,get:t})},r.n=function(e){var n=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(n,"a",n),n},r.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},r.p="",r(r.s=0)}([function(e,r,n){"use strict";function t(){console.log("bonjour ?!")}Object.defineProperty(r,"__esModule",{value:!0}),r.bonjour=t}]);

+ 2 - 2
webpack.config.js Voir le fichier

@@ -6,9 +6,9 @@ module.exports = {
6 6
   entry: './src/index.js',
7 7
   output: {
8 8
     path: path.resolve(__dirname, 'dist'),
9
-    filename: 'tracimLib.js',
9
+    filename: 'tracim_lib.js',
10 10
     pathinfo: !isProduction,
11
-    library: 'tracimLib',
11
+    library: 'tracim_lib',
12 12
     libraryTarget: 'var'
13 13
   },
14 14
   devServer: {