New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

progressio

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

progressio - npm Package Compare versions

Comparing version
0.3.0
to
0.3.1
+3
Gemfile
source "https://rubygems.org"
gem "compass"
GEM
remote: https://rubygems.org/
specs:
chunky_png (1.3.4)
compass (1.0.3)
chunky_png (~> 1.2)
compass-core (~> 1.0.2)
compass-import-once (~> 1.0.5)
rb-fsevent (>= 0.9.3)
rb-inotify (>= 0.9)
sass (>= 3.3.13, < 3.5)
compass-core (1.0.3)
multi_json (~> 1.0)
sass (>= 3.3.0, < 3.5)
compass-import-once (1.0.5)
sass (>= 3.2, < 3.5)
ffi (1.9.8)
multi_json (1.11.0)
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
ffi (>= 0.5.0)
sass (3.4.13)
PLATFORMS
ruby
DEPENDENCIES
compass
+1
-1

@@ -58,3 +58,3 @@ /*

var GRUNT_TASKS_BUILD = {
main: ['clean:reset'].concat(
main: ['clean:build'].concat(
['bower:install'],

@@ -61,0 +61,0 @@ GRUNT_TASKS_BUILD_COMMON,

{
"name": "progressio",
"description": "Beautiful & stylish asynchronous page loader. Makes a static website dynamic in a breeze.",
"version": "0.3.0",
"version": "0.3.1",
"homepage": "https://github.com/valeriansaliou/progressio",

@@ -25,3 +25,3 @@ "license": "MPL-2.0",

"scripts": {
"test": "npm install; grunt test"
"test": "npm install; bundle install --without deployment; grunt test"
},

@@ -28,0 +28,0 @@

Progressio
==========
Progressio transforms your static website to a dynamic environment. Pages are loaded asynchronously, with the use of browser history JavaScript API and a beautiful overlay progress bar.
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/valeriansaliou/progressio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Progressio transforms your static website to a dynamic environment. Pages are loaded asynchronously, with the use of the browser history JavaScript API and a beautiful overlay progress bar.
This library was originally built for [Waaave](https://waaave.com/) - you can test it live there.

@@ -15,3 +17,3 @@

You can test our online demo of Progressio there: https://demo.hakuma.holdings/valerian.saliou/progressio/examples/simple.html
You can test our [online demo of Progressio there](https://demo.hakuma.holdings/valerian.saliou/progressio/examples/simple_1.html).

@@ -132,3 +134,3 @@ _This online demo is the replica of what you can find in the ./examples folder._

Progressio automatically process a diff of the page head dependencies while browsing.
Progressio processes an automated diff of the page head dependencies while browsing.

@@ -135,0 +137,0 @@ It automatically includes and load new CSS stylesheets and JS scripts. If your website has site-wide/common dependencies, you may want to add a tag to let Progressio know it shouldn't replace it.

@@ -14,10 +14,20 @@ #!/bin/sh

# Fixes issues
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
echo "Deploying Progressio..."
cd $BASE_DIR
cd "$BASE_DIR"
npm install
grunt build
npm install && grunt build
rc=$?
echo "Done."
# Check for errors
if [ $rc = 0 ]; then
echo "Done."
else
echo "Error."
fi
exit $rc

Sorry, the diff of this file is not supported yet