@wavemaker/foundation-css 12.0.0-next.141130

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.
Files changed (19) hide show
  1. foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.eot +0 -0
  2. foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.svg +686 -0
  3. foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.ttf +0 -0
  4. foundation-css/foundation/fonts/icons/fontawesome/fontawesome-webfont.woff +0 -0
  5. foundation-css/foundation/fonts/icons/wavicon/wavicon.eot +0 -0
  6. foundation-css/foundation/fonts/icons/wavicon/wavicon.svg +1160 -0
  7. foundation-css/foundation/fonts/icons/wavicon/wavicon.ttf +0 -0
  8. foundation-css/foundation/fonts/icons/wavicon/wavicon.woff +0 -0
  9. foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.eot +0 -0
  10. foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.svg +244 -0
  11. foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.ttf +0 -0
  12. foundation-css/foundation/fonts/icons/wm-streamline-light/wm-streamline-light-icon.woff +0 -0
  13. foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.eot +0 -0
  14. foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.svg +216 -0
  15. foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.ttf +0 -0
  16. foundation-css/foundation/fonts/icons/wm-streamline-regular/wm-streamline-regular-icon.woff +0 -0
  17. foundation-css/foundation/foundation.css +23185 -0
  18. foundation-css/foundation/foundation.min.css +1 -0
  19. foundation-css/package.json +29 -0
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@wavemaker/foundation-css",
3
+ "version": "12.0.0-next.141130",
4
+ "description": "Foundation of CSS used in WaveMaker with custom widgets.",
5
+ "main": "foundation.css",
6
+ "type": "module",
7
+ "scripts": {
8
+ "build": "npm run build:style-dist && npm run compile-css && npm run minify-css && npm run copy-fonts && node ./scripts/build.js post-build",
9
+ "build:style-dist": "node scripts/style-dist-build.js",
10
+ "compile-css": "lessc src/style.less dist/styles/foundation/foundation.css",
11
+ "minify-css": "lessc src/style.less dist/styles/foundation/foundation.min.css --clean-css",
12
+ "copy-fonts": "mkdir -p dist/styles/foundation/fonts && cp -r src/fonts/* dist/styles/foundation/fonts/"
13
+ },
14
+ "devDependencies": {
15
+ "execa": "^5.0.0",
16
+ "fs-extra": "^11.2.0",
17
+ "less": "^4.2.0",
18
+ "less-plugin-clean-css": "^1.6.0",
19
+ "style-dictionary": "^4.1.0",
20
+ "tar": "^7.4.3",
21
+ "yargs": "^17.7.2"
22
+ },
23
+ "author": "",
24
+ "license": "ISC",
25
+ "style": "foundation.css",
26
+ "exports": {
27
+ ".": "./foundation.css"
28
+ }
29
+ }