This website works better with JavaScript.
Home
Explore
Help
Sign In
anoopmb
/
charts
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
18
Wiki
Activity
Browse Source
[NEW] Add Version Constant to export
tags/1.2.0
Achilles Rasquinha
7 years ago
committed by
Prateeksha Singh
parent
8b61bcf888
commit
58aece6105
7 changed files
with
19 additions
and
5 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
Makefile
+1
-1
dist/frappe-charts.min.iife.js
+1
-1
dist/frappe-charts.min.iife.js.map
+1
-1
docs/assets/js/frappe-charts.min.js
+1
-1
docs/assets/js/frappe-charts.min.js.map
+1
-1
rollup.config.js
+10
-0
src/js/index.js
+ 4
- 0
Makefile
View File
@@ -0,0 +1,4 @@
-include .env
BASEDIR = $(realpath .)
+ 1
- 1
dist/frappe-charts.min.iife.js
File diff suppressed because it is too large
View File
+ 1
- 1
dist/frappe-charts.min.iife.js.map
File diff suppressed because it is too large
View File
+ 1
- 1
docs/assets/js/frappe-charts.min.js
File diff suppressed because it is too large
View File
+ 1
- 1
docs/assets/js/frappe-charts.min.js.map
File diff suppressed because it is too large
View File
+ 1
- 1
rollup.config.js
View File
@@ -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
View File
@@ -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;
Write
Preview
Loading…
Cancel
Save