Selaa lähdekoodia

[NEW] Add Version Constant to export

tags/1.2.0
Achilles Rasquinha 7 vuotta sitten
committed by Prateeksha Singh
vanhempi
commit
58aece6105
7 muutettua tiedostoa jossa 19 lisäystä ja 5 poistoa
  1. +4
    -0
      Makefile
  2. +1
    -1
      dist/frappe-charts.min.iife.js
  3. +1
    -1
      dist/frappe-charts.min.iife.js.map
  4. +1
    -1
      docs/assets/js/frappe-charts.min.js
  5. +1
    -1
      docs/assets/js/frappe-charts.min.js.map
  6. +1
    -1
      rollup.config.js
  7. +10
    -0
      src/js/index.js

+ 4
- 0
Makefile Näytä tiedosto

@@ -0,0 +1,4 @@
-include .env

BASEDIR = $(realpath .)


+ 1
- 1
dist/frappe-charts.min.iife.js
File diff suppressed because it is too large
Näytä tiedosto


+ 1
- 1
dist/frappe-charts.min.iife.js.map
File diff suppressed because it is too large
Näytä tiedosto


+ 1
- 1
docs/assets/js/frappe-charts.min.js
File diff suppressed because it is too large
Näytä tiedosto


+ 1
- 1
docs/assets/js/frappe-charts.min.js.map
File diff suppressed because it is too large
Näytä tiedosto


+ 1
- 1
rollup.config.js Näytä tiedosto

@@ -40,7 +40,7 @@ fs.readFile('src/css/charts.scss', (err, css) => {

export default [
{
input: 'src/js/chart.js',
input: 'src/js/index.js',
sourcemap: true,
output: [
{


+ 10
- 0
src/js/index.js Näytä tiedosto

@@ -0,0 +1,10 @@
import * as Charts from './chart';

let frappe = { };

frappe.NAME = 'Frappe Charts';
frappe.VERSION = '1.0.0';

frappe = Object.assign({ }, frappe, Charts);

export default frappe;

Ladataan…
Peruuta
Tallenna